reactos/sdk/lib/crt/process/threadid.c

20 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();
}