home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / new / util / wb / startwindow / source / requshell.c < prev    next >
C/C++ Source or Header  |  1994-10-10  |  288b  |  20 lines

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