Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
71673dc8
Commit
71673dc8
authored
May 13, 2011
by
Marcus Meissner
Committed by
Alexandre Julliard
May 16, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ddrawex: Mark internal symbols as hidden and vtables as static.
parent
bc2a2f39
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
10 deletions
+10
-10
ddrawex_private.h
dlls/ddrawex/ddrawex_private.h
+8
-8
surface.c
dlls/ddrawex/surface.c
+2
-2
No files found.
dlls/ddrawex/ddrawex_private.h
View file @
71673dc8
...
...
@@ -46,10 +46,10 @@ DECLARE_INTERFACE_(IDirectDrawFactory, IUnknown)
HRESULT
WINAPI
IDirectDrawFactoryImpl_CreateDirectDraw
(
IDirectDrawFactory
*
iface
,
GUID
*
pGUID
,
HWND
hWnd
,
DWORD
dwCoopLevelFlags
,
DWORD
dwReserved
,
IUnknown
*
pUnkOuter
,
IDirectDraw
**
ppDirectDraw
);
IDirectDraw
**
ppDirectDraw
)
DECLSPEC_HIDDEN
;
void
DDSD_to_DDSD2
(
const
DDSURFACEDESC
*
in
,
DDSURFACEDESC2
*
out
);
void
DDSD2_to_DDSD
(
const
DDSURFACEDESC2
*
in
,
DDSURFACEDESC
*
out
);
void
DDSD_to_DDSD2
(
const
DDSURFACEDESC
*
in
,
DDSURFACEDESC2
*
out
)
DECLSPEC_HIDDEN
;
void
DDSD2_to_DDSD
(
const
DDSURFACEDESC2
*
in
,
DDSURFACEDESC
*
out
)
DECLSPEC_HIDDEN
;
/******************************************************************************
* IDirectDraw wrapper implementation
...
...
@@ -66,8 +66,8 @@ typedef struct
IDirectDraw4
*
parent
;
}
IDirectDrawImpl
;
IDirectDraw4
*
dd_get_outer
(
IDirectDraw4
*
inner
);
IDirectDraw4
*
dd_get_inner
(
IDirectDraw4
*
outer
);
IDirectDraw4
*
dd_get_outer
(
IDirectDraw4
*
inner
)
DECLSPEC_HIDDEN
;
IDirectDraw4
*
dd_get_inner
(
IDirectDraw4
*
outer
)
DECLSPEC_HIDDEN
;
/******************************************************************************
* IDirectDrawSurface implementation
...
...
@@ -89,8 +89,8 @@ typedef struct
}
IDirectDrawSurfaceImpl
;
IDirectDrawSurface4
*
dds_get_outer
(
IDirectDrawSurface4
*
inner
);
IDirectDrawSurface4
*
dds_get_inner
(
IDirectDrawSurface4
*
outer
);
HRESULT
prepare_permanent_dc
(
IDirectDrawSurface4
*
iface
);
IDirectDrawSurface4
*
dds_get_outer
(
IDirectDrawSurface4
*
inner
)
DECLSPEC_HIDDEN
;
IDirectDrawSurface4
*
dds_get_inner
(
IDirectDrawSurface4
*
outer
)
DECLSPEC_HIDDEN
;
HRESULT
prepare_permanent_dc
(
IDirectDrawSurface4
*
iface
)
DECLSPEC_HIDDEN
;
#endif
/* __WINE_DLLS_DDRAWEX_DDRAWEX_PRIVATE_H */
dlls/ddrawex/surface.c
View file @
71673dc8
...
...
@@ -1055,7 +1055,7 @@ IDirectDrawSurface4Impl_ChangeUniquenessValue(IDirectDrawSurface4 *iface)
return
IDirectDrawSurface4_ChangeUniquenessValue
(
This
->
parent
);
}
const
IDirectDrawSurface3Vtbl
IDirectDrawSurface3_Vtbl
=
static
const
IDirectDrawSurface3Vtbl
IDirectDrawSurface3_Vtbl
=
{
/* IUnknown */
IDirectDrawSurface3Impl_QueryInterface
,
...
...
@@ -1103,7 +1103,7 @@ const IDirectDrawSurface3Vtbl IDirectDrawSurface3_Vtbl =
IDirectDrawSurface3Impl_SetSurfaceDesc
};
const
IDirectDrawSurface4Vtbl
IDirectDrawSurface4_Vtbl
=
static
const
IDirectDrawSurface4Vtbl
IDirectDrawSurface4_Vtbl
=
{
/*** IUnknown ***/
IDirectDrawSurface4Impl_QueryInterface
,
...
...
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