ReactOS 0.4.15-dev-7924-g5949c20
threadid.c
Go to the documentation of this file.
1#include <precomp.h>
2#include <process.h>
3
4
5/*
6 * @implemented
7 */
8unsigned long __threadid (void)
9{
10 return GetCurrentThreadId();
11}
12
13/*
14 * @implemented
15 */
17{
19}
unsigned int uintptr_t
Definition: crtdefs.h:321
uintptr_t __threadhandle()
Definition: threadid.c:16
unsigned long __threadid(void)
Definition: threadid.c:8
HANDLE WINAPI GetCurrentThread(void)
Definition: proc.c:1148
DWORD WINAPI GetCurrentThreadId(void)
Definition: thread.c:459