wshom.ocx: Mark one function as static, one as hidden.

This commit is contained in:
Marcus Meissner 2012-01-02 21:57:47 +01:00 committed by Alexandre Julliard
parent 3a58d28427
commit eaae8f8400
2 changed files with 2 additions and 1 deletions

View File

@ -80,6 +80,7 @@ HRESULT get_typeinfo(tid_t tid, ITypeInfo **typeinfo)
return S_OK; return S_OK;
} }
static
void release_typelib(void) void release_typelib(void)
{ {
unsigned i; unsigned i;

View File

@ -33,6 +33,6 @@ typedef enum tid_t {
LAST_tid LAST_tid
} tid_t; } 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; HRESULT WINAPI WshShellFactory_CreateInstance(IClassFactory*,IUnknown*,REFIID,void**) DECLSPEC_HIDDEN;