diff options
author | midipix <writeonce@midipix.org> | 2024-06-22 13:36:51 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2024-06-22 13:36:51 +0000 |
commit | 722538cb32ac1523e56be0014ed2bb49ce1ea260 (patch) | |
tree | 26c20d9f7a0246423840c768615cda98b02b1c19 /src/internal | |
parent | 02205c83a51babe3f09c8dcee032e1e4ee1373a6 (diff) | |
download | tpax-722538cb32ac1523e56be0014ed2bb49ce1ea260.tar.bz2 tpax-722538cb32ac1523e56be0014ed2bb49ce1ea260.tar.xz |
driver: added initial -o support, implemented the keyval vector.
Diffstat (limited to 'src/internal')
-rw-r--r-- | src/internal/tpax_driver_impl.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/internal/tpax_driver_impl.h b/src/internal/tpax_driver_impl.h index 2bcb486..d340748 100644 --- a/src/internal/tpax_driver_impl.h +++ b/src/internal/tpax_driver_impl.h @@ -44,6 +44,7 @@ enum app_tags { TAG_FILE, TAG_FORMAT, TAG_BLKSIZE, + TAG_OPTIONS, TAG_RECURSE, TAG_NORECURSE, TAG_STRICT_PATH, @@ -80,6 +81,7 @@ struct tpax_driver_ctx_impl { struct tpax_fd_ctx fdctx; const struct tpax_unit_ctx * euctx; const char * eunit; + struct argv_keyval ** keyvalv; struct tpax_error_info ** errinfp; struct tpax_error_info ** erricap; struct tpax_error_info * erriptr[64]; |