diff options
author | midipix <writeonce@midipix.org> | 2018-10-09 20:48:31 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-10-12 13:59:52 -0400 |
commit | 80f43a829180bc0301fecb5dc4ddf6dd95348976 (patch) | |
tree | 359f21c062534deae79d6527c7e1d9673609c244 /src/internal | |
parent | 4fe92c4cff0594f66da78c946cbee5621cf23428 (diff) | |
download | ntux-80f43a829180bc0301fecb5dc4ddf6dd95348976.tar.bz2 ntux-80f43a829180bc0301fecb5dc4ddf6dd95348976.tar.xz |
driver: added 'chmod' command support.
Diffstat (limited to 'src/internal')
-rw-r--r-- | src/internal/ntux_driver_impl.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/internal/ntux_driver_impl.h b/src/internal/ntux_driver_impl.h index e55fdb6..0ab0394 100644 --- a/src/internal/ntux_driver_impl.h +++ b/src/internal/ntux_driver_impl.h @@ -15,6 +15,7 @@ extern const struct argv_option ntux_default_options[]; extern const struct argv_option ntux_spawn_options[]; extern const struct argv_option ntux_strace_options[]; +extern const struct argv_option ntux_chmod_options[]; extern const struct _ntapi_vtbl * ntux_ntapi; #define ntapi ntux_ntapi @@ -25,6 +26,14 @@ enum app_tags { TAG_CMD, TAG_LOADER, TAG_LOGFILE, + TAG_VERBOSE, + TAG_SILENT, + TAG_RECURSIVE, + TAG_STRMODE, + TAG_REFMODE, + TAG_CHANGES, + TAG_ROOTED, + TAG_ROOTLESS, }; struct ntux_driver_ctx_impl { |