Francois Gouget : oleaut32/tests: Make the uk_*() methods static.

Alexandre Julliard julliard at winehq.org
Mon Oct 21 14:58:24 CDT 2013


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

Author: Francois Gouget <fgouget at free.fr>
Date:   Sat Oct 19 13:29:26 2013 +0200

oleaut32/tests: Make the uk_*() methods static.

---

 dlls/oleaut32/tests/typelib.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/oleaut32/tests/typelib.c b/dlls/oleaut32/tests/typelib.c
index 9f6fa1f..613a27d 100644
--- a/dlls/oleaut32/tests/typelib.c
+++ b/dlls/oleaut32/tests/typelib.c
@@ -5052,17 +5052,17 @@ static void test_GetLibAttr(void)
     ITypeLib_Release(tl);
 }
 
-HRESULT WINAPI uk_QueryInterface(IUnknown *obj, REFIID iid, void **out)
+static HRESULT WINAPI uk_QueryInterface(IUnknown *obj, REFIID iid, void **out)
 {
     return E_NOINTERFACE;
 }
 
-ULONG WINAPI uk_AddRef(IUnknown *obj)
+static ULONG WINAPI uk_AddRef(IUnknown *obj)
 {
     return 2;
 }
 
-ULONG WINAPI uk_Release(IUnknown *obj)
+static ULONG WINAPI uk_Release(IUnknown *obj)
 {
     return 1;
 }




More information about the wine-cvs mailing list