mirror of
https://github.com/reactos/reactos.git
synced 2025-05-06 18:31:26 +00:00
[RTL]
Implement RtlEncodeSystemPointer using the user shared data cookie. svn path=/trunk/; revision=47429
This commit is contained in:
parent
6af485d3aa
commit
d259616ce4
1 changed files with 2 additions and 3 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue