private.h 379 B

12345678910111213141516171819
  1. /*
  2. * hotkey private.h
  3. */
  4. #include "clish/hotkey.h"
  5. /*---------------------------------------------------------
  6. * PRIVATE TYPES
  7. *--------------------------------------------------------- */
  8. struct clish_hotkey_s {
  9. int code; /* Hotkey code */
  10. char *cmd; /* Command to execute on this hotkey */
  11. };
  12. struct clish_hotkeyv_s {
  13. unsigned int num;
  14. clish_hotkey_t **hotkeyv;
  15. };