diff options
author | midipix <writeonce@midipix.org> | 2024-02-21 05:23:06 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2024-02-21 05:23:06 +0000 |
commit | 2e30eb25a9f78fcb462c03c4766a8a8669c1f291 (patch) | |
tree | ca0f1a7752ac01b3b1c2cfdb2fe1a3820376ea04 /include | |
parent | 53c651164d18578c1b50f5b09e923ae1fd5e10c5 (diff) | |
download | slibtool-2e30eb25a9f78fcb462c03c4766a8a8669c1f291.tar.bz2 slibtool-2e30eb25a9f78fcb462c03c4766a8a8669c1f291.tar.xz |
core api: simplified the _exec_ interfaces.
Diffstat (limited to 'include')
-rw-r--r-- | include/slibtool/slibtool.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/slibtool/slibtool.h b/include/slibtool/slibtool.h index a3525b6..f8e96fa 100644 --- a/include/slibtool/slibtool.h +++ b/include/slibtool/slibtool.h @@ -391,12 +391,12 @@ slbt_api void slbt_ectx_reset_argvector (struct slbt_exec_ctx *); slbt_api void slbt_ectx_reset_arguments (struct slbt_exec_ctx *); /* core api */ -slbt_api int slbt_exec_compile (const struct slbt_driver_ctx *, struct slbt_exec_ctx *); -slbt_api int slbt_exec_execute (const struct slbt_driver_ctx *, struct slbt_exec_ctx *); -slbt_api int slbt_exec_install (const struct slbt_driver_ctx *, struct slbt_exec_ctx *); -slbt_api int slbt_exec_link (const struct slbt_driver_ctx *, struct slbt_exec_ctx *); -slbt_api int slbt_exec_uninstall (const struct slbt_driver_ctx *, struct slbt_exec_ctx *); -slbt_api int slbt_exec_ar (const struct slbt_driver_ctx *, struct slbt_exec_ctx *); +slbt_api int slbt_exec_compile (const struct slbt_driver_ctx *); +slbt_api int slbt_exec_execute (const struct slbt_driver_ctx *); +slbt_api int slbt_exec_install (const struct slbt_driver_ctx *); +slbt_api int slbt_exec_link (const struct slbt_driver_ctx *); +slbt_api int slbt_exec_uninstall (const struct slbt_driver_ctx *); +slbt_api int slbt_exec_ar (const struct slbt_driver_ctx *); /* host and flavor interfaces */ slbt_api int slbt_host_set_althost (const struct slbt_driver_ctx *, const char * host, const char * flavor); |