mirror of
https://github.com/reactos/reactos.git
synced 2025-05-25 04:03:56 +00:00
[NDK]
- Add RtlEraseUnicodeString ROSTESTS-126 svn path=/trunk/; revision=61007
This commit is contained in:
parent
40075496b4
commit
9bd70d2688
1 changed files with 12 additions and 1 deletions
|
@ -2112,10 +2112,21 @@ RtlFindCharInUnicodeString(
|
|||
_Out_ PUSHORT Position
|
||||
);
|
||||
|
||||
_IRQL_requires_max_(PASSIVE_LEVEL)
|
||||
NTSYSAPI
|
||||
VOID
|
||||
NTAPI
|
||||
RtlFreeUnicodeString(IN PUNICODE_STRING UnicodeString);
|
||||
RtlFreeUnicodeString(
|
||||
_Inout_ _At_(UnicodeString->Buffer, __drv_freesMem(Mem))
|
||||
PUNICODE_STRING UnicodeString
|
||||
);
|
||||
|
||||
NTSYSAPI
|
||||
VOID
|
||||
NTAPI
|
||||
RtlEraseUnicodeString(
|
||||
_Inout_ PUNICODE_STRING String
|
||||
);
|
||||
|
||||
NTSYSAPI
|
||||
NTSTATUS
|
||||
|
|
Loading…
Reference in a new issue