home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / LordLucifer / win32asm / files / win32asm.exe / Win32ASM / Win32Proto / ReadMe.txt next >
Encoding:
Text File  |  1997-11-19  |  1.1 KB  |  27 lines

  1. Win32Proto is an example program built using MASM.
  2.  
  3. This Win32 prototype program is an example of what can be done 
  4. programming to the Win32 API using assembly language. Understanding
  5. what it does assumes that you have some good base knowledge and 
  6. understanding of Win32 programming. 
  7. If you do not, you might want to study a good introductory textbook
  8. about Win32 (Petzold's "Programming Windows 95" comes to mind.)
  9.  
  10. The whole Win32Proto program could have been implemented in a single 
  11. source file, saving many lines of repetitive text (mainly the base 
  12. framework ahead of each .ASM source file).
  13.  
  14. We instead chose to break the program into several separate modules, 
  15. leaving as little code as possible in the main module, in order to 
  16. demonstrate one possible way a large project could be handled to 
  17. remain manageable.
  18.  
  19. This small program is by no way ideal, and it can be improved in
  20. many ways.
  21. But just as it is, it can be used as a framework to start developing
  22. a "real" program.
  23.  
  24. Finally, the WinProtoB.bat file contains the instructions needed
  25. to build the executable.
  26.  
  27.