5 * Copyright (c) 1997 Andreas Mohr
11 #include "wine/windef16.h"
14 /***********************************************************************
17 LPSTR WINAPI
GetWin32sDirectory(void)
19 static char sysdir
[0x80];
22 GetEnvironmentVariableA("winsysdir", sysdir
, 0x80);
23 if (!sysdir
) return NULL
;
24 strcat(sysdir
, "\\WIN32S");
25 text
= HeapAlloc(GetProcessHeap(), 0, strlen(sysdir
)+1);
30 /***********************************************************************
34 SEGPTR WINAPI
_GetThunkBuff(void)
40 /***********************************************************************
41 * GetCurrentTask32 (W32SKRNL.3)
43 HTASK16 WINAPI
GetCurrentTask32(void)
45 return NtCurrentTeb()->htask16
;