Module: wine Branch: master Commit: eaae8f840069d6ea9176aa727b21b68df74856b7 URL: http://source.winehq.org/git/wine.git/?a=commit;h=eaae8f840069d6ea9176aa727b...
Author: Marcus Meissner meissner@suse.de Date: Mon Jan 2 21:57:47 2012 +0100
wshom.ocx: Mark one function as static, one as hidden.
---
dlls/wshom.ocx/wshom_main.c | 1 + dlls/wshom.ocx/wshom_private.h | 2 +- 2 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/dlls/wshom.ocx/wshom_main.c b/dlls/wshom.ocx/wshom_main.c index 6493d86..1c6bb44 100644 --- a/dlls/wshom.ocx/wshom_main.c +++ b/dlls/wshom.ocx/wshom_main.c @@ -80,6 +80,7 @@ HRESULT get_typeinfo(tid_t tid, ITypeInfo **typeinfo) return S_OK; }
+static void release_typelib(void) { unsigned i; diff --git a/dlls/wshom.ocx/wshom_private.h b/dlls/wshom.ocx/wshom_private.h index b39299f..5bf7403 100644 --- a/dlls/wshom.ocx/wshom_private.h +++ b/dlls/wshom.ocx/wshom_private.h @@ -33,6 +33,6 @@ typedef enum tid_t { LAST_tid } tid_t;
-HRESULT get_typeinfo(tid_t tid, ITypeInfo **typeinfo); +HRESULT get_typeinfo(tid_t tid, ITypeInfo **typeinfo) DECLSPEC_HIDDEN;
HRESULT WINAPI WshShellFactory_CreateInstance(IClassFactory*,IUnknown*,REFIID,void**) DECLSPEC_HIDDEN;