blob: 6f3030f89811335881d75fead8a81af3d98d4467 [file] [log] [blame]
/*
* W32SKRNL
* DLL for Win32s
*
* Copyright (c) 1997 Andreas Mohr
*/
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#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;
}