I'm trying to compile an ASM DLL...
i have maded the OBJ file but now, how to compile it as an DLL file not EXE????
thx to all of U =)
i have maded the OBJ file but now, how to compile it as an DLL file not EXE????
thx to all of U =)
This is a sample from the mk.bat from my little dummy.dll
ml /nologo /c /coff dummy.asm
link /dll /def:dummy.def /subsystem:windows dummy.obj
dummy.def looks like this:
LIBRARY dummy.dll
EXPORTS dummyProc
... and that's more or less all there is to it.
ml /nologo /c /coff dummy.asm
link /dll /def:dummy.def /subsystem:windows dummy.obj
dummy.def looks like this:
LIBRARY dummy.dll
EXPORTS dummyProc
... and that's more or less all there is to it.