mirror of
https://github.com/reactos/reactos.git
synced 2025-08-07 03:22:58 +00:00
- Implement RtlDecodePointer and remove respective redefining hack from vectoreh.c.
svn path=/trunk/; revision=40783
This commit is contained in:
parent
69f80eacec
commit
22c66b6d97
2 changed files with 10 additions and 4 deletions
|
@ -329,6 +329,16 @@ RtlEncodePointer(IN PVOID Pointer)
|
||||||
return (PVOID)((ULONG_PTR)Pointer ^ Cookie);
|
return (PVOID)((ULONG_PTR)Pointer ^ Cookie);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
|
PVOID
|
||||||
|
NTAPI
|
||||||
|
RtlDecodePointer(IN PVOID Pointer)
|
||||||
|
{
|
||||||
|
return RtlEncodePointer(Pointer);
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @unimplemented
|
* @unimplemented
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -22,10 +22,6 @@ typedef struct _RTL_VECTORED_EXCEPTION_HANDLER
|
||||||
PVECTORED_EXCEPTION_HANDLER VectoredHandler;
|
PVECTORED_EXCEPTION_HANDLER VectoredHandler;
|
||||||
} RTL_VECTORED_EXCEPTION_HANDLER, *PRTL_VECTORED_EXCEPTION_HANDLER;
|
} RTL_VECTORED_EXCEPTION_HANDLER, *PRTL_VECTORED_EXCEPTION_HANDLER;
|
||||||
|
|
||||||
/* FIXME - stupid ld won't resolve RtlDecodePointer! Since their implementation
|
|
||||||
is the same just use RtlEncodePointer for now! */
|
|
||||||
#define RtlDecodePointer RtlEncodePointer
|
|
||||||
|
|
||||||
/* FUNCTIONS ***************************************************************/
|
/* FUNCTIONS ***************************************************************/
|
||||||
|
|
||||||
BOOLEAN
|
BOOLEAN
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue