home *** CD-ROM | disk | FTP | other *** search
- {@@@@@@@@@@@ copyright (C) 1984 by Neil J. Rubenking @@@@@@@@@@@@@@@@@@@@@@@@
- The purchaser of these procedures and functions may include them in COMPILED
- programs freely, but may not sell or give away the source text.
-
- NOTE: IMPORTANT -- This procedure is useless except in a COMPILED
- program. It returns a string of up to 80 characters consisting of
- whatever you entered on the "command line" after the invocation of
- the program itself. Your program can then sort out that information
- in any way you please.
-
- }
- type
- CommandLine = string[80];
- var
- Parameters : CommandLine absolute CSeg:$80;
- {@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@}
- function GetParameters : commandLine;
- begin
- GetParameters := Parameters;
- end;