diff options
author | midipix <writeonce@midipix.org> | 2024-03-30 16:51:17 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2024-03-30 16:51:17 +0000 |
commit | c6ecfc312fa1e2d3b128240ce41345ff7c1367d4 (patch) | |
tree | 9c10d421d5343eb232b9606c243260d015263afe /src/internal/slibtool_mkvars_impl.h | |
parent | 637ac5ddf9088246d0753dda010ebd303586871c (diff) | |
download | slibtool-c6ecfc312fa1e2d3b128240ce41345ff7c1367d4.tar.bz2 slibtool-c6ecfc312fa1e2d3b128240ce41345ff7c1367d4.tar.xz |
driver: --mkvars, slbt_get_mkvars_flags(): implementation and integration.
Diffstat (limited to 'src/internal/slibtool_mkvars_impl.h')
-rw-r--r-- | src/internal/slibtool_mkvars_impl.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/internal/slibtool_mkvars_impl.h b/src/internal/slibtool_mkvars_impl.h new file mode 100644 index 0000000..00ebd99 --- /dev/null +++ b/src/internal/slibtool_mkvars_impl.h @@ -0,0 +1,13 @@ +#ifndef SLIBTOOL_MKVARS_IMPL_H +#define SLIBTOOL_MKVARS_IMPL_H + +#include <stdint.h> + +struct slbt_driver_ctx; + +int slbt_get_mkvars_flags( + struct slbt_driver_ctx * dctx, + const char * mkvars, + uint64_t * flags); + +#endif |