/** @file view.h * * @brief Klish scheme's "view" entry */ #ifndef _klish_kview_h #define _klish_kview_h #include #include typedef struct kview_s kview_t; typedef struct iview_s { char *name; icommand_t * (*commands)[]; } iview_t; typedef enum { KVIEW_ERROR_OK, KVIEW_ERROR_MALLOC, KVIEW_ERROR_LIST } kview_error_e; C_DECL_BEGIN kview_t *kview_new(const iview_t *info, kview_error_e *error); void kview_free(kview_t *view); bool_t kview_parse(kview_t *view, const iview_t *info, kview_error_e *error); const char *kview_name(const kview_t *view); bool_t kview_set_name(kview_t *view, const char *name); bool_t kview_add_command(kview_t *view, kcommand_t *command); C_DECL_END #endif // _klish_kview_h