Build a Win32 Linker

Started by
0 comments, last by bakery2k1 18 years, 4 months ago
First, I want to thank every member of gamedev.net. Every time I have question and post here, you seem to alway trying give me a good idea, thanks a lot! Now I must build a Win32 Linker as soon as possible, Otherwise every thing I learned so far will become meaningless for me. so I have a list of question, please give me your idea.(I will post remainder later) 1. Can I output a PE .exe without DOS header and/or DOS program stub? If I can't then how to code the DOS header and how the DOS program stub build into the PE .exe? Why DUMPBIN don't dump the DOS header and/or DOS program stub? Is there a program to dump them? Thanks!
Advertisement
Quote:Original post by was2_0
1. Can I output a PE .exe without DOS header and/or DOS program stub?


Nope. Without that it's not a valid PE file.

Quote:Is there a program to dump them?


If you just want to view the hex data, and hex editor will do it.

This topic is closed to new replies.

Advertisement