home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / prog_pm / readme
Encoding:
Text File  |  1989-01-09  |  1.6 KB  |  44 lines

  1.   -------------------------------------------------------------
  2.   Companion Disk to "Programming the OS/2 Presentation Manager"
  3.   -------------------------------------------------------------
  4.  
  5.                     (C) Charles Petzold, 1989
  6.  
  7.  
  8.      This disk contains source code and executable files for 
  9. all programs shown in "Programming the OS/2 Presentation Manager" 
  10. (Microsoft Press, 1989).  The files are organized in directories 
  11. by chapter (CHAP02, CHAP03, and so forth).
  12.  
  13.      Before you begin working with this disk, make a backup copy 
  14. using the OS/2 DISKCOPY command.  You can copy the disk 
  15. contents to your hard disk by first creating a directory for it:
  16.  
  17.           MD C:\PMBOOK
  18.  
  19. and then using the OS/2 XCOPY command:
  20.  
  21.           XCOPY A:\*.* C:\PMBOOK /S
  22.  
  23.      The disk includes executable (.EXE) files for all 
  24. programs.  However, to determine if you have the C compiler and 
  25. other programming tools installed correctly, you may want to 
  26. recompile and link the programs yourself.  All programs have a 
  27. MAKE file that performs the compile and link commands.  To 
  28. compile the WELCOME1 program from CHAP02, for example, switch
  29. to the CHAP02 directory and execute
  30.  
  31.           MAKE WELCOME1 
  32.  
  33. You can also recompile all programs in a particular directory by 
  34. using this OS/2 command:
  35.  
  36.           FOR %X IN (*.) DO MAKE %X
  37.  
  38.      If you have a question or comment about this disk, contact 
  39. Charles Petzold via CompuServe (user ID 72241,56) or MCI Mail 
  40. (user name CPETZOLD or 143-6815).  If this disk proves defective, 
  41. contact Consumer Sales, Microsoft Press, 16011 NE 36th Way, Box 
  42. 97017, Redmond, WA  98073-9717.
  43.  
  44.