mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-28 19:26:16 +00:00
[NTDLL] Fix RtlDecodeSystemPointer for usage inside ntdll. CORE-10368
svn path=/trunk/; revision=74063
This commit is contained in:
@@ -540,7 +540,7 @@
|
||||
539 stdcall RtlDeactivateActivationContext(long long)
|
||||
# RtlDebugPrintTimes
|
||||
541 stdcall RtlDecodePointer(ptr)
|
||||
542 stdcall RtlDecodeSystemPointer(ptr) RtlEncodeSystemPointer
|
||||
542 stdcall RtlDecodeSystemPointer(ptr)
|
||||
543 stdcall RtlDecompressBuffer(long ptr long ptr long ptr)
|
||||
544 stdcall RtlDecompressFragment(long ptr long ptr long long ptr ptr)
|
||||
545 stdcall RtlDefaultNpAcl(ptr)
|
||||
|
||||
@@ -431,6 +431,16 @@ RtlEncodeSystemPointer(IN PVOID Pointer)
|
||||
return (PVOID)((ULONG_PTR)Pointer ^ SharedUserData->Cookie);
|
||||
}
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
PVOID
|
||||
NTAPI
|
||||
RtlDecodeSystemPointer(IN PVOID Pointer)
|
||||
{
|
||||
return RtlEncodeSystemPointer(Pointer);
|
||||
}
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user