Renamed libwin32s to use the proper dll name (libw32skrnl).
[wine.git] / dlls / win32s / w32skernel.c
blobe25b027cbcdf3d2a4e09e81633e3c6d8a6324761
1 /*
2 * W32SKRNL
3 * DLL for Win32s
5 * Copyright (c) 1997 Andreas Mohr
6 */
8 #include <string.h>
10 #include "wine/w32skrnl.h"
11 #include "winbase.h"
13 LPSTR WINAPI GetWin32sDirectory(void)
15 static char sysdir[0x80];
16 LPSTR text;
18 GetEnvironmentVariableA("winsysdir", sysdir, 0x80);
19 if (!sysdir) return NULL;
20 strcat(sysdir, "\\WIN32S");
21 text = HeapAlloc(GetProcessHeap(), 0, strlen(sysdir)+1);
22 strcpy(text, sysdir);
23 return text;
26 /* FIXME */
27 SEGPTR WINAPI _GetThunkBuff(void)
29 return (SEGPTR)NULL;