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

oldstable
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;
}
static
void release_typelib(void)
{
unsigned i;

View File

@ -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;