From 2bd030f13b162f503d8896e4890c34b53f90b289 Mon Sep 17 00:00:00 2001 From: Max Wash Date: Mon, 24 Feb 2025 15:47:49 +0000 Subject: [PATCH] remove string table and chunk table functions from ec3_image_ioctx --- src/image.c | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/src/image.c b/src/image.c index 8900320..792f9c1 100644 --- a/src/image.c +++ b/src/image.c @@ -600,22 +600,6 @@ const struct ec3_extent_info *ec3_image_ioctx_get_extent_info( return b_buffer_ptr(image->io_extent_table); } -enum ec3_status ec3_image_ioctx_open_string_table( - struct ec3_image_ioctx *image, - enum ec3_image_ioctx_mode mode, - struct string_table **out) -{ - return EC3_ERR_NOT_SUPPORTED; -} - -enum ec3_status ec3_image_ioctx_open_chunk_table( - struct ec3_image_ioctx *image, - enum ec3_image_ioctx_mode mode, - struct chunk_table **out) -{ - return EC3_ERR_NOT_SUPPORTED; -} - static uint64_t allocate_tag_id(struct ec3_image_ioctx *image) { uint64_t id = 0;