516e22c8c2e95472c5e590b9012395535e1e9587
[openafs.git] / src / WINNT / afsd / afsd.h
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  *
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 #ifndef OPENAFS_WINNT_AFSD_AFSD_H
11 #define OPENAFS_WINNT_AFSD_AFSD_H 1
12
13 #define USE_BPLUS 1
14
15 #include <afsconfig.h>
16 #include <afs/param.h>
17
18 BOOL InitClass(HANDLE);
19 BOOL InitInstance(HANDLE, int);
20
21 LONG APIENTRY MainWndProc(HWND, unsigned int, unsigned int, long);
22 BOOL APIENTRY About(HWND, unsigned int, unsigned int, long);
23
24 #include <nb30.h>
25
26 #include "cm.h"
27 #include "cm_nls.h"
28
29 #include <osi.h>
30 #include <afs/vldbint.h>
31 #include <afs/afsint.h>
32 #define FSINT_COMMON_XG
33
34 #include <afs/prs_fs.h>
35
36 #include "cm_config.h"
37 #include "cm_user.h"
38 #include "cm_scache.h"
39 #include "cm_callback.h"
40 #ifdef DISKCACHE95
41 #include "cm_diskcache95.h"
42 #endif /* DISKCACHE95 */
43 #include "cm_conn.h"
44 #include "cm_cell.h"
45 #include "cm_aclent.h"
46 #include "cm_server.h"
47 #include "cm_volstat.h"
48 #include "cm_volume.h"
49 #include "cm_dcache.h"
50 #include "cm_access.h"
51 #include "cm_dir.h"
52 #include "cm_utils.h"
53 #include "cm_vnodeops.h"
54 #include "cm_btree.h"
55 #include "cm_daemon.h"
56 #include "cm_ioctl.h"
57 #include "smb_iocons.h"
58 #include "cm_dnlc.h"
59 #include "cm_buf.h"
60 #include "cm_memmap.h"
61 #include "cm_freelance.h"
62 #include "cm_performance.h"
63 #include "cm_rdr.h"
64 #include "afsd_init.h"
65 #include "afsd_eventlog.h"
66
67
68 #define AFS_DAEMON_SERVICE_NAME AFSREG_CLT_SVC_NAME
69 #define AFS_DAEMON_EVENT_NAME   AFSREG_CLT_SW_NAME
70
71 void afs_exit();
72
73 extern void afsi_log(char *pattern, ...);
74
75 /* globals from the base afsd */
76
77 extern int cm_logChunkSize;
78 extern int cm_chunkSize;
79
80 extern cm_volume_t *cm_rootVolumep;
81
82 extern cm_cell_t *cm_rootCellp;
83
84 extern cm_fid_t cm_rootFid;
85
86 extern cm_scache_t *cm_rootSCachep;
87
88 extern osi_log_t *afsd_logp;
89
90 extern fschar_t cm_mountRoot[];
91 extern DWORD cm_mountRootLen;
92
93 extern clientchar_t cm_mountRootC[];
94 extern DWORD cm_mountRootCLen;
95
96 extern char cm_CachePath[];
97
98 extern BOOL isGateway;
99
100 extern BOOL reportSessionStartups;
101
102 #ifdef AFS_FREELANCE_CLIENT
103 extern char *cm_FakeRootDir;                            // the fake root.afs directory
104
105 extern int cm_fakeDirSize;                              // size (in bytes) of fake root.afs directory
106
107 extern int cm_fakeDirCallback;                          // state of the fake root.afs directory. indicates
108                                                         // if it needs to be refreshed
109
110 extern int cm_fakeGettingCallback;                      // 1 if currently updating the fake root.afs directory,
111                                                         // 0 otherwise
112 #endif /* AFS_FREELANCE_CLIENT */
113
114 extern int cm_dnsEnabled;
115 extern int cm_readonlyVolumeVersioning;
116
117 extern long rx_mtu;
118
119 extern HANDLE WaitToTerminate;
120
121 extern int RDR_Initialized;
122
123 extern afs_uint32 smb_Enabled;
124
125 extern int cm_virtualCache;
126
127 #define DFS_SUPPORT 1
128 #define LOG_PACKET 1
129 #undef  NOTSERVICE
130 #define LOCK_TESTING 1
131
132 #define WORKER_THREADS 10
133
134 #define AFSD_HOOK_DLL  "afsdhook.dll"
135 #define AFSD_INIT_HOOK "AfsdInitHook"
136 typedef BOOL ( APIENTRY * AfsdInitHook )(void);
137 #define AFSD_RX_STARTED_HOOK "AfsdRxStartedHook"
138 typedef BOOL ( APIENTRY * AfsdRxStartedHook )(void);
139 #define AFSD_SMB_STARTED_HOOK "AfsdSmbStartedHook"
140 typedef BOOL ( APIENTRY * AfsdSmbStartedHook )(void);
141 #define AFSD_STARTED_HOOK "AfsdStartedHook"
142 typedef BOOL ( APIENTRY * AfsdStartedHook )(void);
143 #define AFSD_DAEMON_HOOK "AfsdDaemonHook"
144 typedef BOOL ( APIENTRY * AfsdDaemonHook )(void);
145 #define AFSD_STOPPING_HOOK "AfsdStoppingHook"
146 typedef BOOL ( APIENTRY * AfsdStoppingHook )(void);
147 #define AFSD_STOPPED_HOOK "AfsdStoppedHook"
148 typedef BOOL ( APIENTRY * AfsdStoppedHook )(void);
149
150 #define SERVICE_CONTROL_CUSTOM_DUMP 128
151 #endif /* OPENAFS_WINNT_AFSD_AFSD_H */