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