home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / util / cdity / runlist3 / src / shellwin.c < prev    next >
C/C++ Source or Header  |  1995-03-15  |  300b  |  20 lines

  1.  
  2. /*
  3.   Shell-Window öffnen
  4. */
  5. #include <clib/dos_protos.h>
  6.  
  7. UBYTE *vers = "\0$VER: Shellwin 1";
  8.  
  9. VOID main(argc,argv)
  10.     int argc;
  11.     char *argv[];
  12. {
  13.     BPTR FH;
  14.  
  15.     FH=Open("CON:0/30/530/50/RUN_LIST_FileReqester_v1/CLOSE",MODE_NEWFILE);
  16.     Execute((argc>1?argv[1]:"FR"),FH,0);
  17.     Close(FH);
  18. }
  19.  
  20.