From 54b609ccc104b32cb4d172806494fd981dbdb5e6 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Sun, 12 Mar 2017 20:46:40 +0100 Subject: [PATCH] scrobj: Make scriptlet_typelib_CreateInstance() static. Signed-off-by: Francois Gouget Signed-off-by: Alexandre Julliard --- dlls/scrobj/scrobj.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/scrobj/scrobj.c b/dlls/scrobj/scrobj.c index 38f1c651f40..3e6535a6073 100644 --- a/dlls/scrobj/scrobj.c +++ b/dlls/scrobj/scrobj.c @@ -445,7 +445,7 @@ HRESULT WINAPI DllUnregisterServer(void) return __wine_unregister_resources(scrobj_instance); } -HRESULT WINAPI scriptlet_typelib_CreateInstance(IClassFactory *factory, IUnknown *outer, REFIID riid, void **obj) +static HRESULT WINAPI scriptlet_typelib_CreateInstance(IClassFactory *factory, IUnknown *outer, REFIID riid, void **obj) { struct scriptlet_typelib *This; HRESULT hr;