[NTDLL] Fix RtlDecodeSystemPointer for usage inside ntdll. CORE-10368

svn path=/trunk/; revision=74063
This commit is contained in:
Mark Jansen
2017-03-04 20:32:12 +00:00
parent 0adcb4d02a
commit ba1534d005
2 changed files with 11 additions and 1 deletions
+1 -1
View File
@@ -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)
+10
View File
@@ -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
*