blob: 5fc04840d4b91d03acb36b411581134cd71e99c2 [file] [log] [blame]
/*
* WIN32S16
* DLL for Win32s
*
* Copyright (c) 1997 Andreas Mohr
*/
#include "windows.h"
#include "debug.h"
#include <string.h>
#include <stdlib.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;
}