mfplat: Add MFCreateAMMediaTypeFromMFMediaType stub.
[wine.git] / dlls / opencl / unix_private.h
blob4344c69f0b0c906d082bf1f11ef8b36eb270eb30
1 /*
2 * Copyright 2021 Zebediah Figura
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 #ifndef __WINE_UNIX_PRIVATE_H
20 #define __WINE_UNIX_PRIVATE_H
22 #include <stdarg.h>
23 #include <stdint.h>
25 #include "ntstatus.h"
26 #define WIN32_NO_STATUS
27 #include "windef.h"
28 #include "winbase.h"
29 #include "winternl.h"
30 #include "wine/unixlib.h"
31 #include "wine/debug.h"
33 #define CL_SILENCE_DEPRECATION
34 #if defined(HAVE_CL_CL_H)
35 #define CL_USE_DEPRECATED_OPENCL_1_0_APIS
36 #define CL_USE_DEPRECATED_OPENCL_1_1_APIS
37 #define CL_USE_DEPRECATED_OPENCL_1_2_APIS
38 #define CL_USE_DEPRECATED_OPENCL_2_0_APIS
39 #define CL_TARGET_OPENCL_VERSION 220
40 #include <CL/cl.h>
41 #elif defined(HAVE_OPENCL_OPENCL_H)
42 #include <OpenCL/opencl.h>
43 #endif
45 #include "unixlib.h"
47 NTSTATUS wrap_clBuildProgram( void *args ) DECLSPEC_HIDDEN;
48 NTSTATUS wrap_clCreateContext( void *args ) DECLSPEC_HIDDEN;
49 NTSTATUS wrap_clCreateContextFromType( void *args ) DECLSPEC_HIDDEN;
50 NTSTATUS wrap_clEnqueueNativeKernel( void *args ) DECLSPEC_HIDDEN;
51 NTSTATUS wrap_clSetEventCallback( void *args ) DECLSPEC_HIDDEN;
52 NTSTATUS wrap_clSetMemObjectDestructorCallback( void *args ) DECLSPEC_HIDDEN;
53 NTSTATUS wrap_clCompileProgram( void *args ) DECLSPEC_HIDDEN;
54 NTSTATUS wrap_clLinkProgram( void *args ) DECLSPEC_HIDDEN;
56 #endif