diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2022-12-25 19:40:57 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2022-12-25 19:40:57 +0100 |
commit | a9094fd2fa7d0848fd07d3f564806e93388de173 (patch) | |
tree | 4abe4973661df292560dc2d0ec1522ff6de3f2b3 /src/gui/gui-hotlist.h | |
parent | b3e4a91760403d1061709732dab0b48735e96cda (diff) | |
download | weechat-a9094fd2fa7d0848fd07d3f564806e93388de173.zip |
core: add option `add` in command `/hotlist`
Diffstat (limited to 'src/gui/gui-hotlist.h')
-rw-r--r-- | src/gui/gui-hotlist.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gui/gui-hotlist.h b/src/gui/gui-hotlist.h index f7876f500..d0054d4bd 100644 --- a/src/gui/gui-hotlist.h +++ b/src/gui/gui-hotlist.h @@ -58,9 +58,11 @@ extern int gui_add_hotlist; /* hotlist functions */ +extern int gui_hotlist_search_priority (const char *priority); extern struct t_gui_hotlist *gui_hotlist_add (struct t_gui_buffer *buffer, enum t_gui_hotlist_priority priority, - struct timeval *creation_time); + struct timeval *creation_time, + int check_conditions); extern void gui_hotlist_restore_buffer (struct t_gui_buffer *buffer); extern void gui_hotlist_restore_all_buffers (); extern void gui_hotlist_resort (); |