home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Computer Club Elmshorn Atari PD
/
CCE_PD.iso
/
pc
/
0400
/
CCE_0423.ZIP
/
CCE_0423.PD
/
INCLUD83.ZOO
/
process.h
< prev
next >
Wrap
C/C++ Source or Header
|
1992-07-20
|
657b
|
31 lines
/* defines for spawnve, etc. */
#ifndef _PROCESS_H
#define _PROCESS_H
#ifndef _COMPILER_H
#include <compiler.h>
#endif
#ifdef __cplusplus
extern "C" {
#endif
#define P_WAIT 0
#define P_NOWAIT 1
#define P_OVERLAY 2
__EXTERN int spawnv __PROTO((int, char *, char **));
__EXTERN int spawnve __PROTO((int, char *, char **, char **));
__EXTERN int _spawnve __PROTO((int, char *, char **, char **));
__EXTERN int spawnvp __PROTO((int, char *, char **));
__EXTERN int spawnle __PROTO((int, char *, ...));
__EXTERN int spawnl __PROTO((int, char *, ...));
__EXTERN int spawnlp __PROTO((int, char *, ...));
#ifdef __cplusplus
}
#endif
#endif /* _PROCESS_H */