Build RTL with NDK
[reactos.git] / reactos / lib / rtl / rtl.h
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS System Libraries
4 * FILE: lib/rtl/rtl.h
5 * PURPOSE: Run-Time Libary Header
6 * PROGRAMMER: Alex Ionescu
7 */
8
9 /* INCLUDES ******************************************************************/
10
11 /* PSDK/NDK Headers */
12 #include <windows.h>
13 #define NTOS_MODE_USER
14 #include <ndk/ntndk.h>
15
16 /* Helper Header */
17 #include <reactos/helper.h>
18
19 /* LIBSUPP Header */
20 #include "libsupp.h"
21
22 /* FIXME: Move this somewhere else, maybe */
23 #ifdef DBG
24 extern VOID FASTCALL CHECK_PAGED_CODE_RTL(char *file, int line);
25 #define PAGED_CODE_RTL() CHECK_PAGED_CODE_RTL(__FILE__, __LINE__)
26 #else
27 #define PAGED_CODE_RTL()
28 #endif
29 /* EOF */