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
d4a211f0
Commit
d4a211f0
authored
Sep 23, 2009
by
Henri Verbeet
Committed by
Alexandre Julliard
Sep 23, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dxgi: Mark internal symbols hidden.
parent
66a72365
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
dxgi_private.h
dlls/dxgi/dxgi_private.h
+10
-10
No files found.
dlls/dxgi/dxgi_private.h
View file @
d4a211f0
...
...
@@ -34,15 +34,15 @@
#include "wine/wined3d.h"
#include "wine/winedxgi.h"
extern
CRITICAL_SECTION
dxgi_cs
;
extern
CRITICAL_SECTION
dxgi_cs
DECLSPEC_HIDDEN
;
/* TRACE helper functions */
const
char
*
debug_dxgi_format
(
DXGI_FORMAT
format
);
const
char
*
debug_dxgi_format
(
DXGI_FORMAT
format
)
DECLSPEC_HIDDEN
;
WINED3DFORMAT
wined3dformat_from_dxgi_format
(
DXGI_FORMAT
format
);
WINED3DFORMAT
wined3dformat_from_dxgi_format
(
DXGI_FORMAT
format
)
DECLSPEC_HIDDEN
;
/* IDXGIFactory */
extern
const
struct
IWineDXGIFactoryVtbl
dxgi_factory_vtbl
;
extern
const
struct
IWineDXGIFactoryVtbl
dxgi_factory_vtbl
DECLSPEC_HIDDEN
;
struct
dxgi_factory
{
const
struct
IWineDXGIFactoryVtbl
*
vtbl
;
...
...
@@ -53,7 +53,7 @@ struct dxgi_factory
};
/* IDXGIDevice */
extern
const
struct
IWineDXGIDeviceVtbl
dxgi_device_vtbl
;
extern
const
struct
IWineDXGIDeviceVtbl
dxgi_device_vtbl
DECLSPEC_HIDDEN
;
struct
dxgi_device
{
const
struct
IWineDXGIDeviceVtbl
*
vtbl
;
...
...
@@ -70,7 +70,7 @@ struct dxgi_output
LONG
refcount
;
};
void
dxgi_output_init
(
struct
dxgi_output
*
output
);
void
dxgi_output_init
(
struct
dxgi_output
*
output
)
DECLSPEC_HIDDEN
;
/* IDXGIAdapter */
struct
dxgi_adapter
...
...
@@ -82,10 +82,10 @@ struct dxgi_adapter
IDXGIOutput
*
output
;
};
HRESULT
dxgi_adapter_init
(
struct
dxgi_adapter
*
adapter
,
IDXGIFactory
*
parent
,
UINT
ordinal
);
HRESULT
dxgi_adapter_init
(
struct
dxgi_adapter
*
adapter
,
IDXGIFactory
*
parent
,
UINT
ordinal
)
DECLSPEC_HIDDEN
;
/* IDXGISwapChain */
extern
const
struct
IDXGISwapChainVtbl
dxgi_swapchain_vtbl
;
extern
const
struct
IDXGISwapChainVtbl
dxgi_swapchain_vtbl
DECLSPEC_HIDDEN
;
struct
dxgi_swapchain
{
const
struct
IDXGISwapChainVtbl
*
vtbl
;
...
...
@@ -94,8 +94,8 @@ struct dxgi_swapchain
};
/* IDXGISurface */
extern
const
struct
IDXGISurfaceVtbl
dxgi_surface_vtbl
;
extern
const
struct
IUnknownVtbl
dxgi_surface_inner_unknown_vtbl
;
extern
const
struct
IDXGISurfaceVtbl
dxgi_surface_vtbl
DECLSPEC_HIDDEN
;
extern
const
struct
IUnknownVtbl
dxgi_surface_inner_unknown_vtbl
DECLSPEC_HIDDEN
;
struct
dxgi_surface
{
const
struct
IDXGISurfaceVtbl
*
vtbl
;
...
...
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