Merge my current work done on the kd++ branch:
[reactos.git] / reactos / subsystems / win / basesrv / basesrv.h
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS Base API Server DLL
4 * FILE: subsystems/win/basesrv/basesrv.h
5 * PURPOSE: Main header - Definitions
6 * PROGRAMMERS: Hermes Belusca-Maito (hermes.belusca@sfr.fr)
7 */
8
9 #ifndef __BASESRV_H__
10 #define __BASESRV_H__
11
12 #pragma once
13
14 /* PSDK/NDK Headers */
15 #define WIN32_NO_STATUS
16 #include <windows.h>
17 #define NTOS_MODE_USER
18 #include <ndk/ntndk.h>
19
20 /* CSRSS Header */
21 #include <csr/csrsrv.h>
22
23 /* BASE Headers */
24 #include <win/basemsg.h>
25 #include <win/base.h>
26
27
28 /* Globals */
29 extern HANDLE BaseSrvHeap;
30 extern HANDLE BaseSrvSharedHeap;
31 extern PBASE_STATIC_SERVER_DATA BaseStaticServerData;
32
33 #endif // __BASESRV_H__
34
35 /* EOF */