mfplat: Add MFCreateAMMediaTypeFromMFMediaType stub.
[wine.git] / dlls / wineandroid.drv / unixlib.h
blobf1ba25720fd314ea2e8c5dd74b34ad5319de8dea
1 /*
2 * Copyright 2022 Jacek Caban for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #include "ntuser.h"
20 #include "wine/unixlib.h"
22 enum android_funcs
24 unix_dispatch_ioctl,
25 unix_init,
26 unix_java_init,
27 unix_java_uninit,
28 unix_register_window,
29 unix_funcs_count
32 #define ANDROID_CALL(func, params) WINE_UNIX_CALL( unix_ ## func, params )
34 /* android_init params */
35 struct init_params
37 PNTAPCFUNC register_window_callback;
41 /* android_ioctl params */
42 struct ioctl_params
44 struct _IRP *irp;
45 DWORD client_id;
49 /* android_register_window params */
50 struct register_window_params
52 UINT_PTR arg1;
53 UINT_PTR arg2;
54 UINT_PTR arg3;
58 enum
60 client_start_device = NtUserDriverCallbackFirst,