A few includes cleanup.
[wine] / dlls / win32s / w32skernel.c
1 /*
2  * W32SKRNL
3  * DLL for Win32s
4  *
5  * Copyright (c) 1997 Andreas Mohr
6  */
7
8 #include <string.h>
9
10 #include "winbase.h"
11
12 /***********************************************************************
13  *              GetWin32sDirectory
14  */
15 LPSTR WINAPI GetWin32sDirectory(void)
16 {
17     static char sysdir[0x80];
18     LPSTR text;
19
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; 
26 }
27
28 /***********************************************************************
29  *              _GetThunkBuff
30  * FIXME: ???
31  */
32 SEGPTR WINAPI _GetThunkBuff(void)
33 {
34         return (SEGPTR)NULL;
35 }