28 lines
534 B
C
28 lines
534 B
C
/*
|
|
* 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()
|
|
{
|
|
fprintf(stderr, "StackLinearToSegmented(), stub !\n");
|
|
return (SEGPTR)NULL;
|
|
}
|