private.h 495 B

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