Avoid dependency on thread.h.

This commit is contained in:
Alexandre Julliard 2005-06-01 20:06:19 +00:00
parent 48da1d52ad
commit b5964ad92d
1 changed files with 3 additions and 4 deletions

View File

@ -24,8 +24,7 @@
#include "windef.h" #include "windef.h"
#include "winbase.h" #include "winbase.h"
#include "wine/windef16.h" #include "wine/winbase16.h"
#include "thread.h"
/*********************************************************************** /***********************************************************************
* _kGetWin32sDirectory@0 (W32SKRNL.14) * _kGetWin32sDirectory@0 (W32SKRNL.14)
@ -47,7 +46,7 @@ LPSTR WINAPI GetWin32sDirectory(void)
*/ */
SEGPTR WINAPI _GetThunkBuff(void) SEGPTR WINAPI _GetThunkBuff(void)
{ {
return (SEGPTR)NULL; return 0;
} }
@ -56,5 +55,5 @@ SEGPTR WINAPI _GetThunkBuff(void)
*/ */
HTASK16 WINAPI GetCurrentTask32(void) HTASK16 WINAPI GetCurrentTask32(void)
{ {
return NtCurrentTeb()->htask16; return GetCurrentTask();
} }