Release 951212
[wine/hacks.git] / win32 / thread.c
blobc88dda42e9250703960f15c4260c2d431b2a9bc5
1 /*
2 * Win32 kernel functions
4 * Copyright 1995 Martin von Loewis
5 */
7 #include <stdio.h>
8 #include <unistd.h>
9 #include "windows.h"
10 #include "winerror.h"
11 #include "kernel32.h"
12 #include "stddebug.h"
13 #include "debug.h"
15 /***********************************************************************
16 * GetCurrentThreadId (KERNEL32.200)
19 int GetCurrentThreadId(void)
21 return getpid();
24 /***********************************************************************
25 * GetThreadContext (KERNEL32.294)
27 BOOL GetThreadContext(HANDLE hThread, void *lpContext)
29 return FALSE;
31 /***********************************************************************
32 * GetCurrentThread (KERNEL32.200)
34 HANDLE WINAPI GetCurrentThread(void)
36 return 0;