Document the --lower-include options.
[wine.git] / dlls / win32s / w32skernel.c
blobc418caf92287144ed331ed5f580c87dcc7aa6010
1 /*
2 * W32SKRNL
3 * DLL for Win32s
5 * Copyright (c) 1997 Andreas Mohr
6 */
8 #include <string.h>
10 #include "winbase.h"
12 /***********************************************************************
13 * GetWin32sDirectory
15 LPSTR WINAPI GetWin32sDirectory(void)
17 static char sysdir[0x80];
18 LPSTR text;
20 GetEnvironmentVariableA("winsysdir", sysdir, 0x80);
21 if (!sysdir) return NULL;
22 strcat(sysdir, "\\WIN32S");
23 text = HeapAlloc(GetProcessHeap(), 0, strlen(sysdir)+1);
24 strcpy(text, sysdir);
25 return text;
28 /***********************************************************************
29 * _GetThunkBuff
30 * FIXME: ???
32 SEGPTR WINAPI _GetThunkBuff(void)
34 return (SEGPTR)NULL;