win32u: Move NtUserTranslateMessage implementation from user32.
[wine.git] / dlls / winegstreamer / unix_private.h
blob7bce8263aaf7d128f8efd78d4da831b2d6e26fb9
1 /*
2 * winegstreamer Unix library interface
4 * Copyright 2020-2021 Zebediah Figura for CodeWeavers
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 __WINE_WINEGSTREAMER_UNIX_PRIVATE_H
22 #define __WINE_WINEGSTREAMER_UNIX_PRIVATE_H
24 #include "unixlib.h"
26 #include <gst/gst.h>
28 extern bool init_gstreamer(void) DECLSPEC_HIDDEN;
29 extern GstElement *create_element(const char *name, const char *plugin_set) DECLSPEC_HIDDEN;
31 extern void wg_format_from_caps(struct wg_format *format, const GstCaps *caps) DECLSPEC_HIDDEN;
32 extern bool wg_format_compare(const struct wg_format *a, const struct wg_format *b) DECLSPEC_HIDDEN;
33 extern GstCaps *wg_format_to_caps(const struct wg_format *format) DECLSPEC_HIDDEN;
35 extern NTSTATUS wg_transform_create(void *args) DECLSPEC_HIDDEN;
36 extern NTSTATUS wg_transform_destroy(void *args) DECLSPEC_HIDDEN;
37 extern NTSTATUS wg_transform_push_data(void *args) DECLSPEC_HIDDEN;
38 extern NTSTATUS wg_transform_read_data(void *args) DECLSPEC_HIDDEN;
40 #endif /* __WINE_WINEGSTREAMER_UNIX_PRIVATE_H */