When an external function is declared,masm generates automatically a leading underscore:
extern ExitProcess:proc ----->_ExitProcess
How can I prevent masm from inserting this underscore _ ?
extern ExitProcess:proc ----->_ExitProcess
How can I prevent masm from inserting this underscore _ ?
The solution is very simple. :)
Instead of stdcall convention,we use the syscall option.
.model flat,syscall
Instead of stdcall convention,we use the syscall option.
.model flat,syscall