This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

I have a problem. How to extrn asm in C inline asm.

I want to extrn a function in asm in C.
example:
_asm
{
extrn test:near
call test
}
like the example:
but I have a exception like that:

inline syntax error in 'opcode'; found 'test'

0