From d42469095d909e70814099a22b40ae2f9831fe6b Mon Sep 17 00:00:00 2001 From: midipix Date: Mon, 19 Feb 2024 06:38:37 +0000 Subject: driver: added slbt_lib_get_symlist_ctx(): symbol string vector from symlist. --- include/slibtool/slibtool.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'include') diff --git a/include/slibtool/slibtool.h b/include/slibtool/slibtool.h index c1e96c2..d80a00e 100644 --- a/include/slibtool/slibtool.h +++ b/include/slibtool/slibtool.h @@ -338,6 +338,11 @@ struct slbt_archive_ctx { void * any; }; +struct slbt_symlist_ctx { + const char * const * path; + const char ** symstrv; +}; + /* raw input api */ slbt_api int slbt_fs_map_input (const struct slbt_driver_ctx *, int, const char *, int, @@ -356,6 +361,10 @@ slbt_api int slbt_lib_get_driver_fdctx (const struct slbt_driver_ctx *, struct slbt_api int slbt_lib_set_driver_fdctx (struct slbt_driver_ctx *, const struct slbt_fd_ctx *); +slbt_api int slbt_lib_get_symlist_ctx (const struct slbt_driver_ctx *, const char *, struct slbt_symlist_ctx **); + +slbt_api void slbt_lib_free_symlist_ctx (struct slbt_symlist_ctx *); + /* command execution context api */ slbt_api int slbt_ectx_get_exec_ctx (const struct slbt_driver_ctx *, struct slbt_exec_ctx **); slbt_api void slbt_ectx_free_exec_ctx (struct slbt_exec_ctx *); -- cgit v1.2.3