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