home *** CD-ROM | disk | FTP | other *** search
/ Carousel Volume 2 #1 / carousel.iso / mactosh / hc / turbopgl.sit / Tpascal xcmd template < prev    next >
Encoding:
Text File  |  1988-03-05  |  521 b   |  33 lines  |  [TEXT/TPAS]

  1. program xcmdtemplate;
  2.  
  3. { change the name of the program to the name you want for the XCMD }
  4. { Remember to change the resource ID to a unique number after compiling}
  5.  
  6. {$R-}
  7. {$U-}
  8. {$D PasXCMD}
  9.  
  10. USES Memtypes,HyperXCmd;
  11.  
  12. PROCEDURE PasXCMD(paramPtr: XCmdPtr);
  13.  
  14. { this is the procedure that will be executed. the name must be PasXCMD }
  15.  
  16. {$I XCmdGlue.inc}
  17.  
  18.   BEGIN
  19.   
  20.   { put your code here }
  21.   
  22.   END;
  23.  
  24. { the BEGIN/END following this comment are a null program. don't delete it.
  25.   it is required by Turbo. }
  26.   
  27. BEGIN
  28. END.
  29.  
  30.  
  31.  
  32.  
  33.