mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
[RTL]
Implement RtlEncodeSystemPointer using the user shared data cookie. svn path=/trunk/; revision=47429
This commit is contained in:
@@ -340,14 +340,13 @@ RtlDecodePointer(IN PVOID Pointer)
|
||||
}
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
* @implemented
|
||||
*/
|
||||
PVOID
|
||||
NTAPI
|
||||
RtlEncodeSystemPointer(IN PVOID Pointer)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return NULL;
|
||||
return (PVOID)((ULONG_PTR)Pointer ^ SharedUserData->Cookie);
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user