Release 980301
[wine] / misc / win32s16.c
1 /*
2  * WIN32S16
3  * DLL for Win32s
4  *
5  * Copyright (c) 1997 Andreas Mohr
6  */
7
8 #include "windows.h"
9 #include <string.h>
10 #include <stdlib.h>
11 #include <stdio.h>
12
13 void BootTask()
14 {
15         fprintf(stderr, "BootTask(): should only be used by WIN32S.EXE.\n");
16 }
17
18 /***********************************************************************
19  *           StackLinearToSegmented       (WIN32S16.43)
20  *
21  * Written without any docu.
22  */
23 SEGPTR WINAPI StackLinearToSegmented(WORD w1, WORD w2)
24 {
25         fprintf(stderr, "StackLinearToSegmented(), stub !\n");
26         return (SEGPTR)NULL;
27 }