more typedef struct separations.

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2805 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2002-05-17 21:01:06 +00:00 committed by cras
commit afed99da62
3 changed files with 15 additions and 8 deletions

View file

@ -5,7 +5,9 @@
# include <regex.h>
#endif
typedef struct {
typedef struct _HILIGHT_REC HILIGHT_REC;
struct _HILIGHT_REC {
char *text;
char **channels; /* if non-NULL, check the text only from these channels */
@ -25,7 +27,7 @@ typedef struct {
unsigned int regexp_compiled:1; /* should always be TRUE, unless regexp is invalid */
regex_t preg;
#endif
} HILIGHT_REC;
};
extern GSList *hilights;