home *** CD-ROM | disk | FTP | other *** search
- unit Chain;
- {-Chaining facility for Turbo 4}
-
- interface
-
- function Chain4(Path, CmdLine : string) : word;
- {-Chain to file named in Path}
- {-CmdLine must be no longer than 94 characters}
- {If it returns, a DOS error code is in the result}
-
- {==========================================================================}
-
- implementation
-
- {$L CHAIN}
-
- function Chain4(Path, CmdLine : string) : word;
- {-Chain to file named in Path}
- {-CmdLine must be no longer than 94 characters}
- {If it returns, a DOS error code is in the result}
- external;
-
- end.