diff options
author | Timo Sirainen <cras@irssi.org> | 2002-05-17 21:01:06 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2002-05-17 21:01:06 +0000 |
commit | afed99da62c054ce65aa2f1e17ff06d7403675a0 (patch) | |
tree | 7cc508aa5d286c69e748efa8eb68aabeddb57f90 /src/core/ignore.h | |
parent | 7b2f9bc50a22a342fb69033872e34fc4a05213a5 (diff) | |
download | irssi-afed99da62c054ce65aa2f1e17ff06d7403675a0.zip |
more typedef struct separations.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2805 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/core/ignore.h')
-rw-r--r-- | src/core/ignore.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/ignore.h b/src/core/ignore.h index 4056062e..4abfaca5 100644 --- a/src/core/ignore.h +++ b/src/core/ignore.h @@ -5,7 +5,9 @@ # include <regex.h> #endif -typedef struct { +typedef struct _IGNORE_REC IGNORE_REC; + +struct _IGNORE_REC { int level; /* ignore these levels */ char *mask; /* nick mask */ char *servertag; /* this is for autoignoring */ @@ -22,7 +24,7 @@ typedef struct { unsigned int regexp_compiled:1; /* should always be TRUE, unless regexp is invalid */ regex_t preg; #endif -} IGNORE_REC; +}; extern GSList *ignores; |