#ifndef _NTRTL_H
NTSYSAPI
VOID
NTAPI
RtlRemoveUnicodePrefix(
_In_ PUNICODE_PREFIX_TABLE PrefixTable,
_In_ PUNICODE_PREFIX_TABLE_ENTRY PrefixTableEntry
);
View code on GitHub// ntifs.h
NTSYSAPI VOID RtlRemoveUnicodePrefix(
[in] PUNICODE_PREFIX_TABLE PrefixTable,
[in] PUNICODE_PREFIX_TABLE_ENTRY PrefixTableEntry
);
View the official Windows Driver Kit DDI referenceThis function is documented in Windows Driver Kit.
The RtlRemoveUnicodePrefix routine removes an element from a prefix table.
PrefixTable [in]Pointer to the prefix table. The table must have been initialized by calling RtlInitializeUnicodePrefix.
PrefixTableEntry [in]Pointer to the prefix table element to be deleted.
None
File systems must call RtlInitializeUnicodePrefix to initialize the prefix table before using any other Rtl..UnicodePrefix routines on it. The initialized prefix table structure should be considered opaque.
Callers of the Rtl..UnicodePrefix routines are responsible for synchronizing access to the prefix table. A fast mutex is the most efficient synchronization mechanism to use for this purpose.
For information about other string-handling routines, see Run-Time Library (RTL) Routines.