home *** CD-ROM | disk | FTP | other *** search
Text File | 1988-03-05 | 521 b | 33 lines | [TEXT/TPAS] |
- program xcmdtemplate;
-
- { change the name of the program to the name you want for the XCMD }
- { Remember to change the resource ID to a unique number after compiling}
-
- {$R-}
- {$U-}
- {$D PasXCMD}
-
- USES Memtypes,HyperXCmd;
-
- PROCEDURE PasXCMD(paramPtr: XCmdPtr);
-
- { this is the procedure that will be executed. the name must be PasXCMD }
-
- {$I XCmdGlue.inc}
-
- BEGIN
-
- { put your code here }
-
- END;
-
- { the BEGIN/END following this comment are a null program. don't delete it.
- it is required by Turbo. }
-
- BEGIN
- END.
-
-
-
-
-