Project

General

Profile

Download (555 Bytes) Statistics
| Branch: | Revision:
/*
*
*
*
*/

struct SCM_def {
char *name;
char *desc;
int mode; /* set to SVC_CONSOLE by the *-scm.c code */
int argc; char **argv; /* original cmdline args */
int (*init)(int, char **); /* called before main */
int (*main)(int, char **); /* called to run the service */
int (*stop)(void *); /* called by scm to tell the service to stop */
};

int SCM_Start(struct SCM_def *, int argc, char **argv);
char *SCM_Install(struct SCM_def *,char *);
int SCM_Remove(struct SCM_def *);

#define SVC_OK 0
#define SVC_FAIL -1
#define SVC_CONSOLE 1

(10-10/13)