[BASESRV]
[reactos.git] / subsystems / win32 / csrsrv / srv.h
1 #ifndef _SRV_H
2 #define _SRV_H
3
4 /* PSDK/NDK Headers */
5 #define NTOS_MODE_USER
6 #include <stdio.h>
7 #define WIN32_NO_STATUS
8 #include <windows.h>
9 #include <winnt.h>
10 #include <ndk/ntndk.h>
11
12 /* CSR Header */
13 #include <csr/csrsrv.h>
14
15 /* PSEH for SEH Support */
16 #include <pseh/pseh2.h>
17
18 /* Subsystem Manager Header */
19 #include <sm/helper.h>
20 #include <sm/smmsg.h>
21
22 /* Internal CSRSS Headers */
23 #include "include/api.h"
24 #include "include/csrplugin.h"
25
26 /* Defines */
27 #define SM_REG_KEY \
28 L"\\Registry\\Machine\\System\\CurrentControlSet\\Control\\Session Manager"
29
30 #define SESSION_ROOT L"\\Sessions"
31 #define GLOBAL_ROOT L"\\GLOBAL??"
32 #define SYMLINK_NAME L"SymbolicLink"
33 #define SB_PORT_NAME L"SbAbiPort"
34 #define CSR_PORT_NAME L"ApiPort"
35 #define UNICODE_PATH_SEP L"\\"
36
37 #define ROUND_UP(n, align) ROUND_DOWN(((ULONG)n) + (align) - 1, (align))
38 #define ROUND_DOWN(n, align) (((ULONG)n) & ~((align) - 1l))
39
40 #endif