- Implement RtlInitializeUnicodePrefix and RtlNextUnicodePrefix. The UnicodePrefix...
[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 /* We're a core NT DLL, we don't import syscalls */
12 #define _NTSYSTEM_
13 #define _NTDLLBUILD_
14 #define WIN32_NO_STATUS
15 #define NTOS_MODE_USER
16 #define _INC_SWPRINTF_INL_
17
18 /* C Headers */
19 #include <stdio.h>
20
21 /* PSDK/NDK Headers */
22 #include <windows.h>
23 #include <ndk/ntndk.h>
24
25 /* Internal RTL header */
26 #include "rtlp.h"
27
28 /* EOF */