5 * Copyright (c) 1997 Andreas Mohr
10 #include "wine/w32skrnl.h"
13 LPSTR WINAPI GetWin32sDirectory(void)
15 static char sysdir[0x80];
18 GetEnvironmentVariableA("winsysdir", sysdir, 0x80);
19 if (!sysdir) return NULL;
20 strcat(sysdir, "\\WIN32S");
21 text = HeapAlloc(GetProcessHeap(), 0, strlen(sysdir)+1);
27 SEGPTR WINAPI _GetThunkBuff(void)