Avoid dependency on thread.h.
This commit is contained in:
parent
48da1d52ad
commit
b5964ad92d
|
@ -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();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue