home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Hutch / DOWNLOAD / Icztutes.exe / TUTE06 / README.TXT < prev   
Encoding:
Text File  |  1999-05-16  |  664 b   |  15 lines

  1. This is the example from Iczelion's Win32 Assembly Tutorial part 6.
  2. In order to assemble the example, you have to have ml.exe, link.exe and nmake.exe in your path.
  3. If they're not in the path, you will have to edit makefile to include the full
  4. path.
  5. You'll have to edit the makefile to correct the path to import libraries in your PC.
  6. Type nmake in the same directory as makefile and the assembly process will
  7. begin.
  8. If you don't want to use the makefile, you can manually assemble the
  9. example with the commands below:
  10.  
  11. ml /c /coff /Cp key.asm
  12. link /SUBSYSTEM:WINDOWS /LIBPATH:c:\masm32\lib key.obj
  13.  
  14. Any problem: contact me at Iczelion@galaxycorp.com
  15.