[NDK] RtlFindCharInUnicodeString is only available in user mode.
[reactos.git] / sdk / include / ndk / rtlfuncs.h
index 005d761..4809b4a 100644 (file)
@@ -2106,6 +2106,16 @@ RtlDuplicateUnicodeString(
     _Out_ PUNICODE_STRING DestinationString
 );
 
+NTSYSAPI
+NTSTATUS
+NTAPI
+RtlFindCharInUnicodeString(
+    _In_ ULONG Flags,
+    _In_ PCUNICODE_STRING SearchString,
+    _In_ PCUNICODE_STRING MatchString,
+    _Out_ PUSHORT Position
+);
+
 //
 // Memory Functions
 //
@@ -2165,16 +2175,6 @@ RtlEqualUnicodeString(
     BOOLEAN CaseInsensitive
 );
 
-NTSYSAPI
-NTSTATUS
-NTAPI
-RtlFindCharInUnicodeString(
-    _In_ ULONG Flags,
-    _In_ PCUNICODE_STRING SearchString,
-    _In_ PCUNICODE_STRING MatchString,
-    _Out_ PUSHORT Position
-);
-
 _IRQL_requires_max_(PASSIVE_LEVEL)
 NTSYSAPI
 VOID