diff options
| author | Felipe Contreras <felipe.contreras@gmail.com> | 2023-03-27 15:59:42 -0600 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2023-04-12 07:30:01 -0300 |
| commit | e4d75fcc8349ae95ec22d0e6679880d23bed37f8 (patch) | |
| tree | f9f390d7f8f8a904642be728c00e87d3a9568b48 /bindings/ruby/defs.h | |
| parent | 837426d7be63cf11d51b74464f174724935c5d4f (diff) | |
ruby: remove FileNames object
Not used anymore now that we return an array of strings directly.
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Diffstat (limited to 'bindings/ruby/defs.h')
| -rw-r--r-- | bindings/ruby/defs.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/bindings/ruby/defs.h b/bindings/ruby/defs.h index 97aea25d..f2a7e484 100644 --- a/bindings/ruby/defs.h +++ b/bindings/ruby/defs.h @@ -58,7 +58,6 @@ extern ID ID_db_mode; extern const rb_data_type_t notmuch_rb_object_type; extern const rb_data_type_t notmuch_rb_database_type; extern const rb_data_type_t notmuch_rb_directory_type; -extern const rb_data_type_t notmuch_rb_filenames_type; extern const rb_data_type_t notmuch_rb_query_type; extern const rb_data_type_t notmuch_rb_threads_type; extern const rb_data_type_t notmuch_rb_thread_type; @@ -91,9 +90,6 @@ extern const rb_data_type_t notmuch_rb_tags_type; #define Data_Get_Notmuch_Directory(obj, ptr) \ Data_Get_Notmuch_Object ((obj), ¬much_rb_directory_type, (ptr)) -#define Data_Get_Notmuch_FileNames(obj, ptr) \ - Data_Get_Notmuch_Object ((obj), ¬much_rb_filenames_type, (ptr)) - #define Data_Get_Notmuch_Query(obj, ptr) \ Data_Get_Notmuch_Object ((obj), ¬much_rb_query_type, (ptr)) @@ -227,12 +223,6 @@ notmuch_rb_directory_get_child_directories (VALUE self); VALUE notmuch_rb_filenames_get (notmuch_filenames_t *fnames); -VALUE -notmuch_rb_filenames_destroy (VALUE self); - -VALUE -notmuch_rb_filenames_each (VALUE self); - /* query.c */ VALUE notmuch_rb_query_destroy (VALUE self); |
