diff options
author | RichardHitt <rbh00@netcom.com> | 2013-01-07 14:20:26 -0800 |
---|---|---|
committer | RichardHitt <rbh00@netcom.com> | 2013-01-07 14:20:26 -0800 |
commit | 0213f21a46001cedd8b1c2d5e362b359214636d8 (patch) | |
tree | 1fae2a6c228801b6824f25cef9dc2abab412577b /src/common/hexchatc.h | |
parent | 0ecbeb71522b51d9e3cd943ec67f52305d917287 (diff) | |
parent | 2af44e02bfc211d281cc51a86d55032134e4da31 (diff) |
Merge pull request #341 from TingPing/lastact
Add last activity keybinding from fedora
Diffstat (limited to 'src/common/hexchatc.h')
-rw-r--r-- | src/common/hexchatc.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common/hexchatc.h b/src/common/hexchatc.h index 207a97cd..9650dc10 100644 --- a/src/common/hexchatc.h +++ b/src/common/hexchatc.h @@ -25,10 +25,13 @@ extern GSList *ignore_list; extern GSList *usermenu_list; extern GSList *urlhandler_list; extern GSList *tabmenu_list; +extern GList *sess_list_by_lastact[]; session * find_channel (server *serv, char *chan); session * find_dialog (server *serv, char *nick); session * new_ircwindow (server *serv, char *name, int type, int focus); +void lastact_update (session * sess); +session * lastact_getfirst (int (*filter) (session *sess)); int is_session (session * sess); void session_free (session *killsess); void lag_check (void); |