mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
17 lines
508 B
C
17 lines
508 B
C
#pragma once
|
|
|
|
NTSTATUS FASTCALL InitCleanupImpl(VOID);
|
|
|
|
NTSTATUS FASTCALL
|
|
IntSafeCopyUnicodeString(PUNICODE_STRING Dest,
|
|
PUNICODE_STRING Source);
|
|
|
|
NTSTATUS FASTCALL
|
|
IntSafeCopyUnicodeStringTerminateNULL(PUNICODE_STRING Dest,
|
|
PUNICODE_STRING Source);
|
|
|
|
NTSTATUS FASTCALL
|
|
IntUnicodeStringToNULLTerminated(PWSTR *Dest, PUNICODE_STRING Src);
|
|
|
|
void FASTCALL
|
|
IntFreeNULLTerminatedFromUnicodeString(PWSTR NullTerminated, PUNICODE_STRING UnicodeString);
|