From 20de1e4c2bc40467c59778cebb46129cd067c923 Mon Sep 17 00:00:00 2001 From: Lars Kanis <kanis@comcard.de> Date: Thu, 25 Jun 2015 17:02:35 +0200 Subject: [PATCH] Add missing GVL wrappers for FXRbCallTreeItemMethod and FXRbCallFoldingItemMethod. --- ext/fox16_c/include/FXRuby.h | 4 ++-- ext/fox16_c/include/gvl_wrappers.h | 12 ++++++++++++ 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/ext/fox16_c/include/FXRuby.h b/ext/fox16_c/include/FXRuby.h index 2c67a27..c992fe0 100644 --- a/ext/fox16_c/include/FXRuby.h +++ b/ext/fox16_c/include/FXRuby.h @@ -420,8 +420,8 @@ void FXRbCallVoidArrayMethod(FXDC* recv,const char *func,TYPE objs,FXuint num){ FXRbUnregisterBorrowedRubyObj(&objs[i]); } -FXTreeItem* FXRbCallTreeItemMethod(const FXTreeList* recv,const char *func,FXint x,FXint y); -FXFoldingItem* FXRbCallFoldingItemMethod(const FXFoldingList* recv,const char *func,FXint x,FXint y); +FXTreeItem* FXRbCallTreeItemMethod_gvlcb(const FXTreeList* recv,const char *func,FXint x,FXint y); +FXFoldingItem* FXRbCallFoldingItemMethod_gvlcb(const FXFoldingList* recv,const char *func,FXint x,FXint y); /* Three arguments */ template<class TYPE1, class TYPE2, class TYPE3> diff --git a/ext/fox16_c/include/gvl_wrappers.h b/ext/fox16_c/include/gvl_wrappers.h index ba24899..df47817 100644 --- a/ext/fox16_c/include/gvl_wrappers.h +++ b/ext/fox16_c/include/gvl_wrappers.h @@ -460,6 +460,16 @@ FOR_EACH_BLOCKING_FUNCTION( DEFINE_GVL_STUB_DECL ) param(TYPE3, , arg3) \ param(TYPE4, , arg4) +#define FOR_EACH_PARAM_OF_FXRbCallTreeItemMethod_4(param) \ + param(ID, , func) \ + param(TYPE1, , arg1) \ + param(TYPE2, , arg2) + +#define FOR_EACH_PARAM_OF_FXRbCallFoldingItemMethod_4(param) \ + param(ID, , func) \ + param(TYPE1, , arg1) \ + param(TYPE2, , arg2) + /* function( name, void_or_nonvoid, returntype, firstparamtype, firstparamname, paramcount ) */ #define FOR_EACH_CALLBACK_FUNCTION(function) \ @@ -512,6 +522,8 @@ FOR_EACH_BLOCKING_FUNCTION( DEFINE_GVL_STUB_DECL ) function(FXRbTreeList_sortFunc, GVL_TYPE_NONVOID, FXint, ITEMA, itema, 2) \ function(FXRbCallDCDrawMethod, GVL_TYPE_VOID, void, RECV, recv, 5) \ function(FXRbCallDCDrawMethod, GVL_TYPE_VOID, void, RECV, recv, 6) \ + function(FXRbCallTreeItemMethod, GVL_TYPE_NONVOID, FXTreeItem*, RECV, recv, 4) \ + function(FXRbCallFoldingItemMethod, GVL_TYPE_NONVOID, FXFoldingItem*, RECV, recv, 4) \ FOR_EACH_CALLBACK_FUNCTION( DEFINE_GVLCB_STUB_DECL ) -- GitLab