diff options
Diffstat (limited to '')
-rw-r--r-- | chat.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/chat.h b/chat.h index 6a3f669..ef5779a 100644 --- a/chat.h +++ b/chat.h @@ -412,10 +412,11 @@ struct Cursor { uint gen; struct Node *node; }; -void completePush(uint id, const char *str); -void completePull(uint id, const char *str); +void completePush(uint id, const char *str, enum Color color); +void completePull(uint id, const char *str, enum Color color); void completeReplace(const char *old, const char *new); void completeRemove(uint id, const char *str); +enum Color completeColor(uint id, const char *str); const char *completePrefix(struct Cursor *curs, uint id, const char *prefix); const char *completeSubstr(struct Cursor *curs, uint id, const char *substr); uint completeNextID(struct Cursor *curs, const char *str); |