From d4a211f0be7b482b29c95793d1fc87f36be7f2fd Mon Sep 17 00:00:00 2001 From: Henri Verbeet Date: Wed, 23 Sep 2009 10:05:53 +0200 Subject: [PATCH] dxgi: Mark internal symbols hidden. --- dlls/dxgi/dxgi_private.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/dlls/dxgi/dxgi_private.h b/dlls/dxgi/dxgi_private.h index a29778c0f04..0e4593d2bb2 100644 --- a/dlls/dxgi/dxgi_private.h +++ b/dlls/dxgi/dxgi_private.h @@ -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;