oleaut32: Zero-init [out] only parameters.
[wine/multimedia.git] / dlls / win32s16.dll16 / win32s16.c
blob4b3cb1d2b8cbe3c568c4a538488a77b5a7ef78d9
1 /*
2 * WIN32S16
3 * DLL for Win32s
5 * Copyright (c) 1997 Andreas Mohr
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include <stdarg.h>
23 #include <string.h>
24 #include <stdlib.h>
25 #include "windef.h"
26 #include "winbase.h"
27 #include "wine/winbase16.h"
28 #include "wine/debug.h"
30 WINE_DEFAULT_DEBUG_CHANNEL(dll);
32 /***********************************************************************
33 * BootTask (WIN32S16.2)
35 void WINAPI BootTask16(void)
37 MESSAGE("BootTask(): should only be used by WIN32S.EXE.\n");
40 /***********************************************************************
41 * StackLinearToSegmented (WIN32S16.43)
43 * Written without any docu.
45 SEGPTR WINAPI StackLinearToSegmented16(WORD w1, WORD w2)
47 FIXME("(%d,%d):stub.\n",w1,w2);
48 return 0;
52 /***********************************************************************
53 * UTSelectorOffsetToLinear (WIN32S16.48)
55 * rough guesswork, but seems to work (I had no "reasonable" docu)
57 LPVOID WINAPI UTSelectorOffsetToLinear16(SEGPTR sptr)
59 return MapSL(sptr);
62 /***********************************************************************
63 * UTLinearToSelectorOffset (WIN32S16.49)
65 * FIXME: I don't know if that's the right way to do linear -> segmented
67 SEGPTR WINAPI UTLinearToSelectorOffset16(LPVOID lptr)
69 return (SEGPTR)lptr;
72 /***********************************************************************
73 * ContinueDebugEvent (WIN32S16.5)
75 BOOL WINAPI ContinueDebugEvent16(DWORD pid, DWORD tid, DWORD status)
77 return ContinueDebugEvent(pid, tid, status);
80 /***********************************************************************
81 * ReadProcessMemory (WIN32S16.6)
83 BOOL WINAPI ReadProcessMemory16(HANDLE process, LPCVOID addr, LPVOID buffer,
84 DWORD size, LPDWORD bytes_read)
86 return ReadProcessMemory(process, addr, buffer, size, (SIZE_T *)bytes_read);
89 /***********************************************************************
90 * GetLastError (WIN32S16.10)
92 DWORD WINAPI GetLastError16(void)
94 return GetLastError();
97 /***********************************************************************
98 * CloseHandle (WIN32S16.11)
100 BOOL WINAPI CloseHandle16(HANDLE handle)
102 return CloseHandle(handle);
105 /***********************************************************************
106 * GetExitCodeThread (WIN32S16.13)
108 BOOL WINAPI GetExitCodeThread16(HANDLE hthread, LPDWORD exitcode)
110 return GetExitCodeThread(hthread, exitcode);
113 /***********************************************************************
114 * VirtualQueryEx (WIN32S16.18)
116 DWORD WINAPI VirtualQueryEx16(HANDLE handle, LPCVOID addr,
117 PMEMORY_BASIC_INFORMATION info, DWORD len)
119 return VirtualQueryEx(handle, addr, info, len);
122 /***********************************************************************
123 * VirtualProtectEx (WIN32S16.19)
125 BOOL WINAPI VirtualProtectEx16(HANDLE handle, LPVOID addr, DWORD size,
126 DWORD new_prot, LPDWORD old_prot)
128 return VirtualProtectEx(handle, addr, size, new_prot, old_prot);