mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
[SDK] Add PsGetCurrentThreadTeb() to the DDK
This commit is contained in:
parent
abb6fd83a4
commit
1a93d83f92
2 changed files with 9 additions and 1 deletions
|
@ -780,7 +780,7 @@ PsGetThreadTeb(IN PETHREAD Thread)
|
||||||
/*
|
/*
|
||||||
* @implemented
|
* @implemented
|
||||||
*/
|
*/
|
||||||
PTEB
|
PVOID
|
||||||
NTAPI
|
NTAPI
|
||||||
PsGetCurrentThreadTeb(VOID)
|
PsGetCurrentThreadTeb(VOID)
|
||||||
{
|
{
|
||||||
|
|
|
@ -327,6 +327,14 @@ PsGetThreadProcessId(
|
||||||
IN PETHREAD Thread);
|
IN PETHREAD Thread);
|
||||||
#endif /* (NTDDI_VERSION >= NTDDI_WS03) */
|
#endif /* (NTDDI_VERSION >= NTDDI_WS03) */
|
||||||
|
|
||||||
|
#if (NTDDI_VERSION >= NTDDI_WS03SP1)
|
||||||
|
NTKERNELAPI
|
||||||
|
PVOID
|
||||||
|
NTAPI
|
||||||
|
PsGetCurrentThreadTeb(
|
||||||
|
VOID);
|
||||||
|
#endif /* (NTDDI_VERSION >= NTDDI_WS03SP1) */
|
||||||
|
|
||||||
#if (NTDDI_VERSION >= NTDDI_VISTA)
|
#if (NTDDI_VERSION >= NTDDI_VISTA)
|
||||||
|
|
||||||
NTKERNELAPI
|
NTKERNELAPI
|
||||||
|
|
Loading…
Reference in a new issue