mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 22:00:55 +00:00
19 lines
231 B
C
19 lines
231 B
C
#include <precomp.h>
|
|
#include <process.h>
|
|
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
unsigned long __threadid (void)
|
|
{
|
|
return GetCurrentThreadId();
|
|
}
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
uintptr_t __threadhandle()
|
|
{
|
|
return (uintptr_t)GetCurrentThread();
|
|
}
|