home *** CD-ROM | disk | FTP | other *** search
-
- /*
- Shell-Window öffnen
- */
- #include <clib/dos_protos.h>
-
- UBYTE *vers = "\0$VER: Shellwin 1";
-
- VOID main(argc,argv)
- int argc;
- char *argv[];
- {
- BPTR FH;
-
- FH=Open("CON:0/30/530/50/RUN_LIST_FileReqester_v1/CLOSE",MODE_NEWFILE);
- Execute((argc>1?argv[1]:"FR"),FH,0);
- Close(FH);
- }
-
-