Henri Verbeet : dxgi: Mark internal symbols hidden.

Alexandre Julliard julliard at winehq.org
Wed Sep 23 11:03:03 CDT 2009


Module: wine
Branch: master
Commit: d4a211f0be7b482b29c95793d1fc87f36be7f2fd
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=d4a211f0be7b482b29c95793d1fc87f36be7f2fd

Author: Henri Verbeet <hverbeet at codeweavers.com>
Date:   Wed Sep 23 10:05:53 2009 +0200

dxgi: Mark internal symbols hidden.

---

 dlls/dxgi/dxgi_private.h |   20 ++++++++++----------
 1 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/dlls/dxgi/dxgi_private.h b/dlls/dxgi/dxgi_private.h
index a29778c..0e4593d 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;




More information about the wine-cvs mailing list