1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
/** BEGIN COPYRIGHT BLOCK
* Copyright 2001 Sun Microsystems, Inc.
* Portions copyright 1999, 2001-2003 Netscape Communications Corporation.
* All rights reserved.
* END COPYRIGHT BLOCK **/
/******************************************************
*
*
* proto-ntutil.h - Prototypes for utility functions used
* throughout slapd on NT.
*
******************************************************/
#if defined( _WINDOWS )
#ifndef _PROTO_NTUTIL
#define _PROTO_NTUTIL
#ifdef __cplusplus
extern "C" {
#endif
/*
*
* ntreg.c
*
*/
extern int SlapdGetRegSZ( LPTSTR lpszRegKey, LPSTR lpszValueName, LPTSTR lpszValue );
extern void unixtodospath(char *szText);
extern void dostounixpath(char *szText);
/*
*
* getopt.c
*
*/
extern int getopt (int argc, char *const *argv, const char *optstring);
extern char *optarg;
/*
*
* ntevent.c
*
*/
extern BOOL MultipleInstances();
extern BOOL SlapdIsAService();
extern void InitializeSlapdLogging( LPTSTR lpszRegLocation, LPTSTR lpszEventLogName, LPTSTR lpszMessageFile );
extern void ReportSlapdEvent(WORD wEventType, DWORD dwIdEvent, WORD wNumInsertStrings,
char *pszStrings);
extern BOOL ReportSlapdStatusToSCMgr(
SERVICE_STATUS *serviceStatus,
SERVICE_STATUS_HANDLE serviceStatusHandle,
HANDLE Event,
DWORD dwCurrentState,
DWORD dwWin32ExitCode,
DWORD dwCheckPoint,
DWORD dwWaitHint);
extern void WINAPI SlapdServiceCtrlHandler(DWORD dwOpcode);
extern BOOL SlapdGetServerNameFromCmdline(char *szServerName, char *szCmdLine, int dirname);
/*
*
* ntgetpassword.c
*
*/
#ifdef NET_SSL
extern char *Slapd_GetPassword();
#ifdef FORTEZZA
extern char *Slapd_GetFortezzaPIN();
#endif
extern void CenterDialog(HWND hwndParent, HWND hwndDialog);
#endif /* NET_SSL */
#ifdef __cplusplus
}
#endif
#endif /* _PROTO_NTUTIL */
#endif /* _WINDOWS */
|