79506: [PATCH] vbscript: Mark some symbols as hidden

buildbot at kegel.com buildbot at kegel.com
Mon Oct 3 17:25:42 CDT 2011


This is an experimental automated build and test service.
Please feel free to ignore this email while we work the kinks out.

For more info about this message, see http://wiki.winehq.org/BuildBot

The Buildbot has detected a failed build on builder runtests-heaptest while building Wine.
Full details are available at: http://buildbot.kegel.com/builders/runtests-heaptest/builds/174 (though maybe not for long, as I'm still reinstalling the buildbot periodically while experimenting)
BUILD FAILED: failed git

Errors:
error: patch failed: dlls/vbscript/vbscript.h:115
error: dlls/vbscript/vbscript.h: patch does not apply

-------------- next part --------------
From: Marcus Meissner <meissner at suse.de>
Subject: [PATCH] vbscript: Mark some symbols as hidden
Message-Id: <1317641326-19844-1-git-send-email-meissner at suse.de>
Date: Mon,  3 Oct 2011 13:28:46 +0200

---
 dlls/vbscript/vbscript.h |   20 ++++++++++----------
 1 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/dlls/vbscript/vbscript.h b/dlls/vbscript/vbscript.h
index 491003b..9e18f47 100644
--- a/dlls/vbscript/vbscript.h
+++ b/dlls/vbscript/vbscript.h
@@ -115,12 +115,12 @@ struct _vbdisp_t {
     VARIANT props[1];
 };
 
-HRESULT create_vbdisp(const class_desc_t*,vbdisp_t**);
-HRESULT disp_get_id(IDispatch*,BSTR,vbdisp_invoke_type_t,BOOL,DISPID*);
-HRESULT vbdisp_get_id(vbdisp_t*,BSTR,vbdisp_invoke_type_t,BOOL,DISPID*);
-HRESULT disp_call(script_ctx_t*,IDispatch*,DISPID,DISPPARAMS*,VARIANT*);
-HRESULT disp_propput(script_ctx_t*,IDispatch*,DISPID,VARIANT*);
-void collect_objects(script_ctx_t*);
+HRESULT create_vbdisp(const class_desc_t*,vbdisp_t**) DECLSPEC_HIDDEN;
+HRESULT disp_get_id(IDispatch*,BSTR,vbdisp_invoke_type_t,BOOL,DISPID*) DECLSPEC_HIDDEN;
+HRESULT vbdisp_get_id(vbdisp_t*,BSTR,vbdisp_invoke_type_t,BOOL,DISPID*) DECLSPEC_HIDDEN;
+HRESULT disp_call(script_ctx_t*,IDispatch*,DISPID,DISPPARAMS*,VARIANT*) DECLSPEC_HIDDEN;
+HRESULT disp_propput(script_ctx_t*,IDispatch*,DISPID,VARIANT*) DECLSPEC_HIDDEN;
+void collect_objects(script_ctx_t*) DECLSPEC_HIDDEN;
 
 static inline unsigned arg_cnt(const DISPPARAMS *dp)
 {
@@ -168,8 +168,8 @@ struct _script_ctx_t {
     struct list named_items;
 };
 
-HRESULT init_global(script_ctx_t*);
-HRESULT init_err(script_ctx_t*);
+HRESULT init_global(script_ctx_t*) DECLSPEC_HIDDEN;
+HRESULT init_err(script_ctx_t*) DECLSPEC_HIDDEN;
 
 IUnknown *create_ax_site(script_ctx_t*) DECLSPEC_HIDDEN;
 
@@ -321,9 +321,9 @@ TID_LIST
     LAST_tid
 } tid_t;
 
-HRESULT get_typeinfo(tid_t,ITypeInfo**);
+HRESULT get_typeinfo(tid_t,ITypeInfo**) DECLSPEC_HIDDEN;
 
-HRESULT WINAPI VBScriptFactory_CreateInstance(IClassFactory*,IUnknown*,REFIID,void**);
+HRESULT WINAPI VBScriptFactory_CreateInstance(IClassFactory*,IUnknown*,REFIID,void**) DECLSPEC_HIDDEN;
 
 const char *debugstr_variant(const VARIANT*) DECLSPEC_HIDDEN;
 
-- 
1.7.1



More information about the wine-tests-results mailing list