--- ray/src/common/rtprocess.h 2004/01/28 12:42:22 3.10 +++ ray/src/common/rtprocess.h 2016/02/02 18:02:32 3.13 @@ -1,4 +1,4 @@ -/* RCSid $Id: rtprocess.h,v 3.10 2004/01/28 12:42:22 schorsch Exp $ */ +/* RCSid $Id: rtprocess.h,v 3.13 2016/02/02 18:02:32 greg Exp $ */ /* * rtprocess.h * Routines to communicate with separate process via dual pipes @@ -9,26 +9,12 @@ #define _RAD_PROCESS_H_ #include +#include #ifdef _WIN32 #include /* DWORD etc. */ - #include typedef DWORD RT_PID; #include /* getpid() and others */ - #define nice(inc) win_nice(inc) - - #ifdef __cplusplus - extern "C" { - #endif - extern FILE *win_popen(char *command, char *type); - extern int win_pclose(FILE *p); - #ifdef __cplusplus - } - #endif - - #define popen(cmd,mode) win_popen(cmd,mode) - #define pclose(p) win_pclose(p) #else - #include #include #include typedef pid_t RT_PID;