home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 7
/
FreshFishVol7.bin
/
bbs
/
gnu
/
aplusplus-1.01-src.lha
/
GNU
/
src
/
amiga
/
APlusPlus-1.01
/
amiproc
/
amiproc.h
< prev
next >
Wrap
C/C++ Source or Header
|
1994-07-07
|
417b
|
22 lines
#ifndef D_DATASEG_H
#define D_DATASEG_H
#ifdef __cplusplus
extern "C" {
#endif
#include <dos/dos.h>
// The following functions provide a convenient way to spawn
// a new subprocess with full autoinitialization, access to
// all the normal library functions, etc.
struct AmiProcMsg *AmiProc_Start(int (*FuncPtr)(void *), void *UserData);
int AmiProc_Wait(struct AmiProcMsg *);
#ifdef __cplusplus
}
#endif
#endif