Initial IBM OpenAFS 1.0 tree
[openafs.git] / src / WINNT / afssvrmgr / svc_startstop.h
1 #ifndef SVC_STARTSTOP_H
2 #define SVC_STARTSTOP_H
3
4
5 /*
6  * DEFINITIONS ________________________________________________________________
7  *
8  */
9
10 typedef struct
11    {
12    LPIDENT lpiStart;
13    BOOL fTemporary;
14    } SVC_START_PARAMS, *LPSVC_START_PARAMS;
15
16 typedef struct
17    {
18    LPIDENT lpiStop;
19    BOOL fTemporary;
20    } SVC_STOP_PARAMS, *LPSVC_STOP_PARAMS;
21
22
23 /*
24  * PROTOTYPES _________________________________________________________________
25  *
26  */
27
28 BOOL Services_fRunning (LPSERVICE lpService);
29
30 void Services_Start (LPIDENT lpiService);
31 void Services_Restart (LPIDENT lpiService);
32 void Services_Stop (LPIDENT lpiService);
33
34
35 #endif
36