blob: 48b00cb4b309beaecb2d26852d4692e0940a9867 [file] [log] [blame]
/*
* WIN32S16
* DLL for Win32s
*
* Copyright (c) 1997 Andreas Mohr
*/
#include <string.h>
#include <stdlib.h>
#include "windows.h"
#include "debug.h"
void BootTask()
{
MSG("BootTask(): should only be used by WIN32S.EXE.\n");
}
/***********************************************************************
* StackLinearToSegmented (WIN32S16.43)
*
* Written without any docu.
*/
SEGPTR WINAPI StackLinearToSegmented(WORD w1, WORD w2)
{
FIXME(dll,"(%d,%d):stub.\n",w1,w2);
return (SEGPTR)NULL;
}