OleMetaFilePictFromIconAndLabel16: slightly broken, use LPOLESTR16.
[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 "windef.h"
11 #include "debugtools.h"
12
13 DEFAULT_DEBUG_CHANNEL(dll)
14
15 void WINAPI BootTask16()
16 {
17         MESSAGE("BootTask(): should only be used by WIN32S.EXE.\n");
18 }
19
20 /***********************************************************************
21  *           StackLinearToSegmented       (WIN32S16.43)
22  *
23  * Written without any docu.
24  */
25 SEGPTR WINAPI StackLinearToSegmented16(WORD w1, WORD w2)
26 {
27         FIXME("(%d,%d):stub.\n",w1,w2);
28         return (SEGPTR)NULL;
29 }