20 |
|
#include "netproc.h" |
21 |
|
#include "paths.h" |
22 |
|
|
23 |
– |
PSERVER* addpserver(char*, char*, char*, int); |
24 |
– |
void delpserver(); |
25 |
– |
int startjob(PSERVER*, char*, int(*)()); |
26 |
– |
int wait4job(PSERVER*, int); |
27 |
– |
|
28 |
– |
//static fd_set errdesc; |
23 |
|
static int maxfd; |
24 |
|
static char ourdir[PATH_MAX]; |
25 |
|
static char ourhost[64]; |
111 |
|
return 0; |
112 |
|
} |
113 |
|
|
114 |
< |
int startjob(PSERVER* pPS, char* command, int (*compf)()) { |
114 |
> |
int startjob( |
115 |
> |
PSERVER* pPS, |
116 |
> |
char* command, |
117 |
> |
pscompfunc *compf |
118 |
> |
) |
119 |
> |
{ |
120 |
|
return 0; |
121 |
|
} |
122 |
|
|