window_activity() and window_item_activity() are now public. Added them to

perl as well.


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2445 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2002-02-15 09:05:45 +00:00 committed by cras
commit fcc61f2382
5 changed files with 32 additions and 7 deletions

View file

@ -0,0 +1,13 @@
#ifndef __WINDOW_ACTIVITY_H
#define __WINDOW_ACTIVITY_H
void window_activity(WINDOW_REC *window, int data_level,
const char *hilight_color);
void window_item_activity(WI_ITEM_REC *item, int data_level,
const char *hilight_color);
void window_activity_init(void);
void window_activity_deinit(void);
#endif