If you are building a PE file (.exe, a portable executable for Win32), it has an entry point that you could name _start
, _main
or whatever you like.
Question: Is this entry point called some arguments? If so, are they available on the stack? If so, do I need an entry point function to clear the stack? Where can I find documentation about this?
source
share