blob: 2ef3b2b47449b0fe9a680d07e0db68fe06dbb57a [file] [log] [blame]
/*
* W32SKRNL
* DLL for Win32s
*
* Copyright (c) 1997 Andreas Mohr
*/
#include <string.h>
#include "winbase.h"
LPSTR WINAPI GetWin32sDirectory(void)
{
static char sysdir[0x80];
LPSTR text;
GetEnvironmentVariable32A("winsysdir", sysdir, 0x80);
if (!sysdir) return NULL;
strcat(sysdir, "\\WIN32S");
text = HeapAlloc(GetProcessHeap(), 0, strlen(sysdir)+1);
strcpy(text, sysdir);
return text;
}
/* FIXME */
SEGPTR WINAPI _GetThunkBuff(void)
{
return (SEGPTR)NULL;
}