X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=bindings%2Fruby%2Fdefs.h;h=9454658b96bd28fe08105afa4b464ad9492bb953;hb=ae1336dea5cc6a221699fff260d8b44cee677f77;hp=a33ef0da69d392467e64d747dae447f2adddf212;hpb=7415b53fa568a3156ae3e3a47544a4784e024653;p=notmuch diff --git a/bindings/ruby/defs.h b/bindings/ruby/defs.h index a33ef0da..9454658b 100644 --- a/bindings/ruby/defs.h +++ b/bindings/ruby/defs.h @@ -136,20 +136,17 @@ notmuch_rb_object_free (void *rb_wrapper) talloc_free (rb_wrapper); } -static inline notmuch_status_t +static inline void notmuch_rb_object_destroy (VALUE rb_object, const rb_data_type_t *type) { notmuch_rb_object_t *rb_wrapper; - notmuch_status_t ret; Data_Get_Notmuch_Rb_Object (rb_object, type, rb_wrapper); /* Call the corresponding notmuch_*_destroy function */ - ret = ((notmuch_status_t (*)(void *)) type->data) (rb_wrapper->nm_object); + ((void (*)(void *)) type->data) (rb_wrapper->nm_object); notmuch_rb_object_free (rb_wrapper); DATA_PTR (rb_object) = NULL; - - return ret; } /* status.c */ @@ -372,6 +369,9 @@ VALUE notmuch_rb_message_thaw (VALUE self); /* tags.c */ +VALUE +notmuch_rb_tags_get (notmuch_tags_t *tags); + VALUE notmuch_rb_tags_destroy (VALUE self);