mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-30 12:23:28 +00:00
[NDK][KERNEL32][LIBCNTPR]
Add RtlAnsiCharToUnicodeChar prototype inside NDK. [NDK][NTVDM] Add few missing RTL bitmap prototypes. svn path=/trunk/; revision=68386
This commit is contained in:
@@ -1927,12 +1927,12 @@ RtlOemToUnicodeN(
|
||||
//
|
||||
// Ansi->Unicode String Functions
|
||||
//
|
||||
_IRQL_requires_max_(APC_LEVEL)
|
||||
NTSYSAPI
|
||||
ULONG
|
||||
WCHAR
|
||||
NTAPI
|
||||
RtlxAnsiStringToUnicodeSize(
|
||||
PCANSI_STRING AnsiString
|
||||
);
|
||||
RtlAnsiCharToUnicodeChar(
|
||||
_Inout_ PUCHAR *SourceCharacter);
|
||||
|
||||
NTSYSAPI
|
||||
NTSTATUS
|
||||
@@ -1943,6 +1943,13 @@ RtlAnsiStringToUnicodeString(
|
||||
BOOLEAN AllocateDestinationString
|
||||
);
|
||||
|
||||
NTSYSAPI
|
||||
ULONG
|
||||
NTAPI
|
||||
RtlxAnsiStringToUnicodeSize(
|
||||
PCANSI_STRING AnsiString
|
||||
);
|
||||
|
||||
#ifdef NTOS_MODE_USER
|
||||
|
||||
#define RtlAnsiStringToUnicodeSize(STRING) ( \
|
||||
@@ -3079,6 +3086,33 @@ RtlFindClearBitsAndSet(
|
||||
_In_ ULONG HintIndex
|
||||
);
|
||||
|
||||
NTSYSAPI
|
||||
ULONG
|
||||
NTAPI
|
||||
RtlFindFirstRunClear(
|
||||
_In_ PRTL_BITMAP BitMapHeader,
|
||||
_Out_ PULONG StartingIndex
|
||||
);
|
||||
|
||||
NTSYSAPI
|
||||
ULONG
|
||||
NTAPI
|
||||
RtlFindClearRuns(
|
||||
_In_ PRTL_BITMAP BitMapHeader,
|
||||
_Out_writes_to_(SizeOfRunArray, return) PRTL_BITMAP_RUN RunArray,
|
||||
_In_range_(>, 0) ULONG SizeOfRunArray,
|
||||
_In_ BOOLEAN LocateLongestRuns
|
||||
);
|
||||
|
||||
NTSYSAPI
|
||||
ULONG
|
||||
NTAPI
|
||||
RtlFindLastBackwardRunClear(
|
||||
_In_ PRTL_BITMAP BitMapHeader,
|
||||
_In_ ULONG FromIndex,
|
||||
_Out_ PULONG StartingRunIndex
|
||||
);
|
||||
|
||||
NTSYSAPI
|
||||
CCHAR
|
||||
NTAPI
|
||||
|
||||
Reference in New Issue
Block a user