/* * W32SKRNL * DLL for Win32s * * Copyright (c) 1997 Andreas Mohr */ #include #include #include #include "windows.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; }