mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 23:12:56 +00:00

* lib/msvcrt/.cvsignore: Ignore *.gch. * lib/msvcrt/precomp.h: New file. * lib/msvcrt/Makefile (TARGET_PCH): Set to precomp.h. * lib/msvcrt/*/*.c: Use pre-compiled header. svn path=/trunk/; revision=10555
19 lines
227 B
C
19 lines
227 B
C
#include "precomp.h"
|
|
#include <msvcrt/process.h>
|
|
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
unsigned long __threadid (void)
|
|
{
|
|
return GetCurrentThreadId();
|
|
}
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
void *__threadhandle(void)
|
|
{
|
|
return GetCurrentThread();
|
|
}
|