diff options
author | June McEnroe <june@causal.agency> | 2020-02-02 19:34:35 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-02-02 19:34:35 -0500 |
commit | 5c328c7a8801d6a4aded769092ead9715d4ecf98 (patch) | |
tree | fd88d2ac2cc6d7df3c1fc52f939b1451a0068764 /chat.h | |
parent | Use tsl/fsl capabilities for title if available (diff) | |
download | catgirl-5c328c7a8801d6a4aded769092ead9715d4ecf98.tar.gz catgirl-5c328c7a8801d6a4aded769092ead9715d4ecf98.zip |
Remove term.c in favor of more curses APIs
Diffstat (limited to '')
-rw-r--r-- | chat.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/chat.h b/chat.h index 8a806f1..43f62fd 100644 --- a/chat.h +++ b/chat.h @@ -118,21 +118,6 @@ void uiFormat( size_t id, enum Heat heat, const struct tm *time, const char *format, ... ) __attribute__((format(printf, 4, 5))); -enum TermMode { - TermFocus, - TermPaste, -}; -enum TermEvent { - TermNone, - TermFocusIn, - TermFocusOut, - TermPasteStart, - TermPasteEnd, -}; -void termNoFlow(void); -void termMode(enum TermMode mode, bool set); -enum TermEvent termEvent(char ch); - static inline enum Color hash(const char *str) { if (*str == '~') str++; uint32_t hash = 0; |