mirror of http://git.nssm.cc/nssm/nssm.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
421 B
C
16 lines
421 B
C
#ifndef SERVICE_H
|
|
#define SERVICE_H
|
|
|
|
void WINAPI service_main(unsigned long, char **);
|
|
unsigned long WINAPI service_control_handler(unsigned long, unsigned long, void *, void *);
|
|
|
|
SC_HANDLE open_service_manager();
|
|
int install_service(char *);
|
|
int remove_service(char *);
|
|
int monitor_service();
|
|
int start_service();
|
|
int stop_service(unsigned long);
|
|
void CALLBACK end_service(void *, unsigned char);
|
|
|
|
#endif
|