Make rtl use a single header. Helps for PCH and will help for the new Headers (no...
[reactos.git] / reactos / lib / rtl / unicodeprefix.c
1 /*
2 * ReactOS kernel
3 * Copyright (C) 2003 ReactOS Team
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19 /* $Id$
20 *
21 * COPYRIGHT: See COPYING in the top level directory
22 * PROJECT: ReactOS system libraries
23 * PURPOSE: Unicode Prefix implementation
24 * FILE: lib/rtl/unicodeprfx.c
25 */
26
27 #include "rtl.h"
28
29 #define NDEBUG
30 #include <debug.h>
31
32 /* FUNCTIONS *****************************************************************/
33
34 /*
35 * @unimplemented
36 */
37 PUNICODE_PREFIX_TABLE_ENTRY
38 STDCALL
39 RtlFindUnicodePrefix (
40 PUNICODE_PREFIX_TABLE PrefixTable,
41 PUNICODE_STRING FullName,
42 ULONG CaseInsensitiveIndex
43 )
44 {
45 UNIMPLEMENTED;
46 return 0;
47 }
48
49 /*
50 * @unimplemented
51 */
52 VOID
53 STDCALL
54 RtlInitializeUnicodePrefix (
55 PUNICODE_PREFIX_TABLE PrefixTable
56 )
57 {
58 UNIMPLEMENTED;
59 }
60
61 /*
62 * @unimplemented
63 */
64 BOOLEAN
65 STDCALL
66 RtlInsertUnicodePrefix (
67 PUNICODE_PREFIX_TABLE PrefixTable,
68 PUNICODE_STRING Prefix,
69 PUNICODE_PREFIX_TABLE_ENTRY PrefixTableEntry
70 )
71 {
72 UNIMPLEMENTED;
73 return FALSE;
74 }
75
76 /*
77 * @unimplemented
78 */
79 PUNICODE_PREFIX_TABLE_ENTRY
80 STDCALL
81 RtlNextUnicodePrefix (
82 PUNICODE_PREFIX_TABLE PrefixTable,
83 BOOLEAN Restart
84 )
85 {
86 UNIMPLEMENTED;
87 return 0;
88 }
89
90 /*
91 * @unimplemented
92 */
93 VOID
94 STDCALL
95 RtlRemoveUnicodePrefix (
96 PUNICODE_PREFIX_TABLE PrefixTable,
97 PUNICODE_PREFIX_TABLE_ENTRY PrefixTableEntry
98 )
99 {
100 UNIMPLEMENTED;
101 }
102
103 /* EOF */