- Fix headers to include less or smaller header files.
[wine] / misc / w32skrnl.c
1 /*
2  * W32SKRNL
3  * DLL for Win32s
4  *
5  * Copyright (c) 1997 Andreas Mohr
6  */
7
8 #include <string.h>
9 #include "winbase.h"
10
11 LPSTR WINAPI GetWin32sDirectory(void)
12 {
13     static char sysdir[0x80];
14     LPSTR text;
15
16     GetEnvironmentVariable32A("winsysdir", sysdir, 0x80);
17     if (!sysdir) return NULL;
18     strcat(sysdir, "\\WIN32S");
19     text = HeapAlloc(GetProcessHeap(), 0, strlen(sysdir)+1);
20     strcpy(text, sysdir);
21     return text; 
22 }
23
24 /* FIXME */
25 SEGPTR WINAPI _GetThunkBuff(void)
26 {
27         return (SEGPTR)NULL;
28 }