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
b9849d2f
Commit
b9849d2f
authored
Jul 12, 2023
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Jul 20, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ddrawex: Remove DECLSPEC_HIDDEN usage.
parent
59ee798d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
ddrawex_private.h
dlls/ddrawex/ddrawex_private.h
+8
-8
No files found.
dlls/ddrawex/ddrawex_private.h
View file @
b9849d2f
...
...
@@ -48,10 +48,10 @@ DECLARE_INTERFACE_(IDirectDrawFactory, IUnknown)
HRESULT
WINAPI
ddrawex_factory_CreateDirectDraw
(
IDirectDrawFactory
*
iface
,
GUID
*
guid
,
HWND
window
,
DWORD
coop_level
,
DWORD
reserved
,
IUnknown
*
outer_unknown
,
IDirectDraw
**
ddraw
)
DECLSPEC_HIDDEN
;
IDirectDraw
**
ddraw
);
void
DDSD_to_DDSD2
(
const
DDSURFACEDESC
*
in
,
DDSURFACEDESC2
*
out
)
DECLSPEC_HIDDEN
;
void
DDSD2_to_DDSD
(
const
DDSURFACEDESC2
*
in
,
DDSURFACEDESC
*
out
)
DECLSPEC_HIDDEN
;
void
DDSD_to_DDSD2
(
const
DDSURFACEDESC
*
in
,
DDSURFACEDESC2
*
out
);
void
DDSD2_to_DDSD
(
const
DDSURFACEDESC2
*
in
,
DDSURFACEDESC
*
out
);
struct
ddrawex
{
...
...
@@ -65,8 +65,8 @@ struct ddrawex
IDirectDraw4
*
parent
;
};
IDirectDraw4
*
dd_get_outer
(
IDirectDraw4
*
inner
)
DECLSPEC_HIDDEN
;
IDirectDraw4
*
dd_get_inner
(
IDirectDraw4
*
outer
)
DECLSPEC_HIDDEN
;
IDirectDraw4
*
dd_get_outer
(
IDirectDraw4
*
inner
);
IDirectDraw4
*
dd_get_inner
(
IDirectDraw4
*
outer
);
struct
ddrawex_surface
{
...
...
@@ -84,8 +84,8 @@ struct ddrawex_surface
#define IID_DDrawexPriv IID_IDirectDrawSurface4
};
struct
ddrawex_surface
*
unsafe_impl_from_IDirectDrawSurface4
(
IDirectDrawSurface4
*
iface
)
DECLSPEC_HIDDEN
;
IDirectDrawSurface4
*
dds_get_outer
(
IDirectDrawSurface4
*
inner
)
DECLSPEC_HIDDEN
;
HRESULT
prepare_permanent_dc
(
IDirectDrawSurface4
*
iface
)
DECLSPEC_HIDDEN
;
struct
ddrawex_surface
*
unsafe_impl_from_IDirectDrawSurface4
(
IDirectDrawSurface4
*
iface
);
IDirectDrawSurface4
*
dds_get_outer
(
IDirectDrawSurface4
*
inner
);
HRESULT
prepare_permanent_dc
(
IDirectDrawSurface4
*
iface
);
#endif
/* __WINE_DLLS_DDRAWEX_DDRAWEX_PRIVATE_H */
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