gdiplus: In GdipImageSelectActiveFrame rely on codec->select_func() to fail.
[wine.git] / dlls / ntdll / unixlib.h
blob22e5663990da28dfc30b2a8acfa798652823567f
1 /*
2 * Ntdll Unix interface
4 * Copyright (C) 2020 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #ifndef __NTDLL_UNIXLIB_H
22 #define __NTDLL_UNIXLIB_H
24 #include "wine/unixlib.h"
26 struct _DISPATCHER_CONTEXT;
28 struct wine_dbg_write_params
30 const char *str;
31 unsigned int len;
34 struct wine_server_fd_to_handle_params
36 int fd;
37 unsigned int access;
38 unsigned int attributes;
39 HANDLE *handle;
42 struct wine_server_handle_to_fd_params
44 HANDLE handle;
45 unsigned int access;
46 int *unix_fd;
47 unsigned int *options;
50 struct wine_spawnvp_params
52 char **argv;
53 int wait;
56 struct load_so_dll_params
58 UNICODE_STRING nt_name;
59 void **module;
62 struct unwind_builtin_dll_params
64 ULONG type;
65 struct _DISPATCHER_CONTEXT *dispatch;
66 CONTEXT *context;
69 enum ntdll_unix_funcs
71 unix_load_so_dll,
72 unix_unwind_builtin_dll,
73 unix_wine_dbg_write,
74 unix_wine_server_call,
75 unix_wine_server_fd_to_handle,
76 unix_wine_server_handle_to_fd,
77 unix_wine_spawnvp,
78 unix_system_time_precise,
81 extern unixlib_handle_t __wine_unixlib_handle DECLSPEC_HIDDEN;
83 #endif /* __NTDLL_UNIXLIB_H */