update for HEAD-2003091401
[reactos.git] / lib / crtdll / process / threadid.c
1 #include <windows.h>
2 #include <msvcrt/process.h>
3
4 /*
5  * @implemented
6  */
7 unsigned long __threadid (void)
8 {
9         return GetCurrentThreadId();
10 }
11
12 /*
13  * @implemented
14  */
15 void *__threadhandle(void)
16 {
17         return GetCurrentThread();
18 }