Release 980503
[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 "debug.h"
10 #include <string.h>
11 #include <stdlib.h>
12 #include <stdio.h>
13
14 void BootTask()
15 {
16         MSG("BootTask(): should only be used by WIN32S.EXE.\n");
17 }
18
19 /***********************************************************************
20  *           StackLinearToSegmented       (WIN32S16.43)
21  *
22  * Written without any docu.
23  */
24 SEGPTR WINAPI StackLinearToSegmented(WORD w1, WORD w2)
25 {
26         FIXME(dll,"(%d,%d):stub.\n",w1,w2);
27         return (SEGPTR)NULL;
28 }