- Bugfix: Corrected "off by one" error in the linenumber while parsing
[wine] / dlls / win32s / 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 "windef.h"
11 #include "debugtools.h"
12
13 DEFAULT_DEBUG_CHANNEL(dll);
14
15 /***********************************************************************
16  *              BootTask16
17  */
18 void WINAPI BootTask16()
19 {
20         MESSAGE("BootTask(): should only be used by WIN32S.EXE.\n");
21 }
22
23 /***********************************************************************
24  *           StackLinearToSegmented       (WIN32S16.43)
25  *
26  * Written without any docu.
27  */
28 SEGPTR WINAPI StackLinearToSegmented16(WORD w1, WORD w2)
29 {
30         FIXME("(%d,%d):stub.\n",w1,w2);
31         return (SEGPTR)NULL;
32 }