Commit b5964ad9 authored by Alexandre Julliard's avatar Alexandre Julliard

Avoid dependency on thread.h.

parent 48da1d52
......@@ -24,8 +24,7 @@
#include "windef.h"
#include "winbase.h"
#include "wine/windef16.h"
#include "thread.h"
#include "wine/winbase16.h"
/***********************************************************************
* _kGetWin32sDirectory@0 (W32SKRNL.14)
......@@ -47,7 +46,7 @@ LPSTR WINAPI GetWin32sDirectory(void)
*/
SEGPTR WINAPI _GetThunkBuff(void)
{
return (SEGPTR)NULL;
return 0;
}
......@@ -56,5 +55,5 @@ SEGPTR WINAPI _GetThunkBuff(void)
*/
HTASK16 WINAPI GetCurrentTask32(void)
{
return NtCurrentTeb()->htask16;
return GetCurrentTask();
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment