mirror of
https://github.com/reactos/reactos.git
synced 2025-05-08 19:27:00 +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
|
PVOID
|
||||||
NTAPI
|
NTAPI
|
||||||
RtlEncodeSystemPointer(IN PVOID Pointer)
|
RtlEncodeSystemPointer(IN PVOID Pointer)
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED;
|
return (PVOID)((ULONG_PTR)Pointer ^ SharedUserData->Cookie);
|
||||||
return NULL;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue