private.h 474 B

123456789101112131415161718
  1. /*
  2. * nspace.h
  3. */
  4. #include "clish/nspace.h"
  5. /*---------------------------------------------------------
  6. * PRIVATE TYPES
  7. *--------------------------------------------------------- */
  8. struct clish_nspace_s {
  9. clish_view_t *view; /* The view to import commands from */
  10. char *prefix; /* if non NULL the prefix for imported commands */
  11. clish_command_t * prefix_cmd;
  12. clish_command_t * proxy_cmd;
  13. bool_t help;
  14. bool_t completion;
  15. bool_t context_help;
  16. bool_t inherit;
  17. };