Moved initialization until later. Also moved around code a bit to be
[wine] / misc / win32s16.c
1 /*
2  * WIN32S16
3  * DLL for Win32s
4  *
5  * Copyright (c) 1997 Andreas Mohr
6  */
7
8 #include <string.h>
9 #include <stdlib.h>
10 #include "windows.h"
11 #include "debug.h"
12
13 void WINAPI BootTask()
14 {
15         MSG("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         FIXME(dll,"(%d,%d):stub.\n",w1,w2);
26         return (SEGPTR)NULL;
27 }