Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
9b2353c3
Commit
9b2353c3
authored
Nov 28, 2023
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
opencl: Remove DECLSPEC_HIDDEN usage.
parent
9a14c4a6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
9 deletions
+9
-9
opencl_private.h
dlls/opencl/opencl_private.h
+1
-1
unix_private.h
dlls/opencl/unix_private.h
+8
-8
No files found.
dlls/opencl/opencl_private.h
View file @
9b2353c3
...
...
@@ -31,7 +31,7 @@
#include "wine/unixlib.h"
#include "wine/debug.h"
BOOL
extension_is_supported
(
const
char
*
name
,
size_t
len
)
DECLSPEC_HIDDEN
;
BOOL
extension_is_supported
(
const
char
*
name
,
size_t
len
);
#define OPENCL_CALL( func, params ) WINE_UNIX_CALL( unix_ ## func, params )
...
...
dlls/opencl/unix_private.h
View file @
9b2353c3
...
...
@@ -44,13 +44,13 @@
#include "unixlib.h"
NTSTATUS
wrap_clBuildProgram
(
void
*
args
)
DECLSPEC_HIDDEN
;
NTSTATUS
wrap_clCreateContext
(
void
*
args
)
DECLSPEC_HIDDEN
;
NTSTATUS
wrap_clCreateContextFromType
(
void
*
args
)
DECLSPEC_HIDDEN
;
NTSTATUS
wrap_clEnqueueNativeKernel
(
void
*
args
)
DECLSPEC_HIDDEN
;
NTSTATUS
wrap_clSetEventCallback
(
void
*
args
)
DECLSPEC_HIDDEN
;
NTSTATUS
wrap_clSetMemObjectDestructorCallback
(
void
*
args
)
DECLSPEC_HIDDEN
;
NTSTATUS
wrap_clCompileProgram
(
void
*
args
)
DECLSPEC_HIDDEN
;
NTSTATUS
wrap_clLinkProgram
(
void
*
args
)
DECLSPEC_HIDDEN
;
NTSTATUS
wrap_clBuildProgram
(
void
*
args
);
NTSTATUS
wrap_clCreateContext
(
void
*
args
);
NTSTATUS
wrap_clCreateContextFromType
(
void
*
args
);
NTSTATUS
wrap_clEnqueueNativeKernel
(
void
*
args
);
NTSTATUS
wrap_clSetEventCallback
(
void
*
args
);
NTSTATUS
wrap_clSetMemObjectDestructorCallback
(
void
*
args
);
NTSTATUS
wrap_clCompileProgram
(
void
*
args
);
NTSTATUS
wrap_clLinkProgram
(
void
*
args
);
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment