mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
371 B
22 lines
371 B
/*
|
|
* Prototypes for functions in NCPASVCC.C
|
|
*/
|
|
|
|
enum ESVCNAME
|
|
{
|
|
ESVC_NONE,
|
|
ESVC_WORKSTATION,
|
|
ESVC_NETLOGON,
|
|
ESVC_ELNKII,
|
|
ESVC_NBF
|
|
};
|
|
|
|
NET_API_STATUS SvcCtlOpenHandle ( SC_HANDLE * phSvcCtrl ) ;
|
|
|
|
void SvcCtlCloseHandle ( SC_HANDLE hSvcCtrl ) ;
|
|
|
|
NET_API_STATUS SvcCtlStartService (
|
|
SC_HANDLE hSvcCtrl,
|
|
enum ESVCNAME esvcName ) ;
|
|
|
|
|