ksym.h 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /** @file ksym.h
  2. *
  3. * @brief Klish symbol
  4. */
  5. #ifndef _klish_ksym_h
  6. #define _klish_ksym_h
  7. #include <klish/kcontext_base.h>
  8. typedef struct ksym_s ksym_t;
  9. // Callback function prototype
  10. typedef int (*ksym_fn)(kcontext_t *context);
  11. // Aliases for permanent flag
  12. #define KSYM_USERDEFINED_PERMANENT TRI_UNDEFINED
  13. #define KSYM_NONPERMANENT TRI_FALSE
  14. #define KSYM_PERMANENT TRI_TRUE
  15. // Aliases for sync flag
  16. #define KSYM_USERDEFINED_SYNC TRI_UNDEFINED
  17. #define KSYM_UNSYNC TRI_FALSE
  18. #define KSYM_SYNC TRI_TRUE
  19. C_DECL_BEGIN
  20. // ksym_t
  21. ksym_t *ksym_new(const char *name, ksym_fn function);
  22. ksym_t *ksym_new_ext(const char *name, ksym_fn function,
  23. tri_t permanent, tri_t sync);
  24. void ksym_free(ksym_t *sym);
  25. const char *ksym_name(const ksym_t *sym);
  26. ksym_fn ksym_function(const ksym_t *sym);
  27. bool_t ksym_set_function(ksym_t *sym, ksym_fn fn);
  28. tri_t ksym_permanent(const ksym_t *sym);
  29. bool_t ksym_set_permanent(ksym_t *sym, tri_t permanent);
  30. tri_t ksym_sync(const ksym_t *sym);
  31. bool_t ksym_set_sync(ksym_t *sym, tri_t sync);
  32. C_DECL_END
  33. #endif // _klish_ksym_h