mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +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
|
||||
*/
|
||||
PTEB
|
||||
PVOID
|
||||
NTAPI
|
||||
PsGetCurrentThreadTeb(VOID)
|
||||
{
|
||||
|
|
|
@ -327,6 +327,14 @@ PsGetThreadProcessId(
|
|||
IN PETHREAD Thread);
|
||||
#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)
|
||||
|
||||
NTKERNELAPI
|
||||
|
|
Loading…
Reference in a new issue