In Skeleton.asm the LAST line, there is a: End DllEntry
My question: Shouldn't there be a: Start DllEntry ?
Normally after the .code section we use: Start:
and in the end: End Start
I guess that's just an error.
:)
My question: Shouldn't there be a: Start DllEntry ?
Normally after the .code section we use: Start:
and in the end: End Start
I guess that's just an error.
:)
As long as there is a lable DllEntry, all is okay.
Hi bitRAKE
But you see, in this case I don't see ANY Entries.:(
But you see, in this case I don't see ANY Entries.:(
shark DllEntry is the entrypoint into the dll. This is made so by having the end DllEntry this tells the assembler to set up the execuatble so that when it's loaded the program proper starts at the address labeled DllEntry.
This label can be anything you want start,winmain,DllEntry,EntryProc...etc as long as you have the corresponding end "entry point lable" then the asemler/linker will do the rest
This label can be anything you want start,winmain,DllEntry,EntryProc...etc as long as you have the corresponding end "entry point lable" then the asemler/linker will do the rest