[CONSRV]
[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 Header */
23 #include "include/api.h"
24
25 /* Defines */
26 #define SM_REG_KEY \
27 L"\\Registry\\Machine\\System\\CurrentControlSet\\Control\\Session Manager"
28
29 #define SESSION_ROOT L"\\Sessions"
30 #define GLOBAL_ROOT L"\\GLOBAL??"
31 #define SYMLINK_NAME L"SymbolicLink"
32 #define SB_PORT_NAME L"SbAbiPort"
33 #define CSR_PORT_NAME L"ApiPort"
34 #define UNICODE_PATH_SEP L"\\"
35
36 #define ROUND_UP(n, align) ROUND_DOWN(((ULONG)n) + (align) - 1, (align))
37 #define ROUND_DOWN(n, align) (((ULONG)n) & ~((align) - 1l))
38
39 #endif