mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-20 17:36:22 +00:00
Plugins: Added completer_clear
This commit is contained in:
@@ -108,6 +108,12 @@ c_api_completer_remove(const char *key, char **items)
|
||||
api_completer_remove(key, items);
|
||||
}
|
||||
|
||||
static void
|
||||
c_api_completer_clear(const char *key)
|
||||
{
|
||||
api_completer_clear(key);
|
||||
}
|
||||
|
||||
static void
|
||||
c_api_notify(const char *message, int timeout_ms, const char *category)
|
||||
{
|
||||
@@ -277,6 +283,7 @@ c_api_init(void)
|
||||
prof_register_timed = c_api_register_timed;
|
||||
prof_completer_add = c_api_completer_add;
|
||||
prof_completer_remove = c_api_completer_remove;
|
||||
prof_completer_clear = c_api_completer_clear;
|
||||
prof_notify = c_api_notify;
|
||||
prof_send_line = c_api_send_line;
|
||||
prof_get_current_recipient = c_api_get_current_recipient;
|
||||
|
||||
Reference in New Issue
Block a user