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 _ ?
Posted on 2003-05-10 03:49:26 by Vortex
The solution is very simple. :)

Instead of stdcall convention,we use the syscall option.

.model flat,syscall
Posted on 2003-05-11 07:55:03 by Vortex