Francois Gouget : d3d10core: Make some device_parent_*() functions static.

Alexandre Julliard julliard at winehq.org
Mon Jan 26 10:14:33 CST 2009


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

Author: Francois Gouget <fgouget at free.fr>
Date:   Mon Jan 26 12:53:17 2009 +0100

d3d10core: Make some device_parent_*() functions static.

---

 dlls/d3d10core/device.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/d3d10core/device.c b/dlls/d3d10core/device.c
index 978fcd3..7ee3e5e 100644
--- a/dlls/d3d10core/device.c
+++ b/dlls/d3d10core/device.c
@@ -1123,19 +1123,19 @@ static inline struct d3d10_device *device_from_device_parent(IWineD3DDeviceParen
     return (struct d3d10_device *)((char*)iface - FIELD_OFFSET(struct d3d10_device, device_parent_vtbl));
 }
 
-HRESULT STDMETHODCALLTYPE device_parent_QueryInterface(IWineD3DDeviceParent *iface, REFIID riid, void **object)
+static HRESULT STDMETHODCALLTYPE device_parent_QueryInterface(IWineD3DDeviceParent *iface, REFIID riid, void **object)
 {
     struct d3d10_device *This = device_from_device_parent(iface);
     return d3d10_device_QueryInterface((ID3D10Device *)This, riid, object);
 }
 
-ULONG STDMETHODCALLTYPE device_parent_AddRef(IWineD3DDeviceParent *iface)
+static ULONG STDMETHODCALLTYPE device_parent_AddRef(IWineD3DDeviceParent *iface)
 {
     struct d3d10_device *This = device_from_device_parent(iface);
     return d3d10_device_AddRef((ID3D10Device *)This);
 }
 
-ULONG STDMETHODCALLTYPE device_parent_Release(IWineD3DDeviceParent *iface)
+static ULONG STDMETHODCALLTYPE device_parent_Release(IWineD3DDeviceParent *iface)
 {
     struct d3d10_device *This = device_from_device_parent(iface);
     return d3d10_device_Release((ID3D10Device *)This);




More information about the wine-cvs mailing list