Removed winver and service_table from the PDB and made them static
[wine/testsucceed.git] / dlls / win32s / w32skernel.c
blob639d64bdc0fe417164d9536004d693f498740e33
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 /***********************************************************************
14 * GetWin32sDirectory
16 LPSTR WINAPI GetWin32sDirectory(void)
18 static char sysdir[0x80];
19 LPSTR text;
21 GetEnvironmentVariableA("winsysdir", sysdir, 0x80);
22 if (!sysdir) return NULL;
23 strcat(sysdir, "\\WIN32S");
24 text = HeapAlloc(GetProcessHeap(), 0, strlen(sysdir)+1);
25 strcpy(text, sysdir);
26 return text;
29 /***********************************************************************
30 * _GetThunkBuff
31 * FIXME: ???
33 SEGPTR WINAPI _GetThunkBuff(void)
35 return (SEGPTR)NULL;