5 * Copyright (c) 1997 Andreas Mohr
12 /***********************************************************************
15 LPSTR WINAPI GetWin32sDirectory(void)
17 static char sysdir[0x80];
20 GetEnvironmentVariableA("winsysdir", sysdir, 0x80);
21 if (!sysdir) return NULL;
22 strcat(sysdir, "\\WIN32S");
23 text = HeapAlloc(GetProcessHeap(), 0, strlen(sysdir)+1);
28 /***********************************************************************
32 SEGPTR WINAPI _GetThunkBuff(void)