mirror of
https://github.com/reactos/wine.git
synced 2025-02-03 18:53:17 +00:00
30 lines
576 B
C
30 lines
576 B
C
|
/*
|
||
|
* Win32 kernel functions
|
||
|
*
|
||
|
* Copyright 1995 Martin von Loewis
|
||
|
*/
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <unistd.h>
|
||
|
#include "windows.h"
|
||
|
#include "winerror.h"
|
||
|
#include "kernel32.h"
|
||
|
|
||
|
/***********************************************************************
|
||
|
* GetCurrentThreadId (KERNEL32.200)
|
||
|
*/
|
||
|
|
||
|
int GetCurrentThreadId(void)
|
||
|
{
|
||
|
return getpid();
|
||
|
}
|
||
|
|
||
|
/***********************************************************************
|
||
|
* GetThreadContext (KERNEL32.294)
|
||
|
*/
|
||
|
BOOL GetThreadContext(HANDLE hThread, void *lpContext)
|
||
|
{
|
||
|
return FALSE;
|
||
|
}
|
||
|
|