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