Release 971221
[wine/multimedia.git] / misc / w32skrnl.c
blobf05cc9960e620f7f78f17f723ddff3739e4f07f0
1 /*
2 * W32SKRNL
3 * DLL for Win32s
5 * Copyright (c) 1997 Andreas Mohr
6 */
8 #include "windows.h"
9 #include <string.h>
10 #include <stdlib.h>
11 #include <stdio.h>
13 LPSTR WINAPI GetWin32sDirectory(void)
15 static char *sysdir;
16 LPSTR text;
18 sysdir = getenv("winsysdir");
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;