Group: Moderators
Posts: 140
Member No.: 8
Joined: 13-May 04
def2inc is a tool converting module definition files to Masm \ Poasm include files. All the symbols in a def file should be enclosed between double quotes.
Stdcall functions should be encoded with a leading underscore :
CODE
"_MessageBoxA@16"
C functions does not have any decoration :
CODE
"printf"
A typical module definition file is demonstrated below :