summaryrefslogtreecommitdiff
path: root/include/services.h
diff options
context:
space:
mode:
authorAdam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864>2010-03-20 04:59:38 +0000
committerAdam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864>2010-03-20 04:59:38 +0000
commit51351aac2b7e993de3610c406af1218d32a2811f (patch)
tree452919cf896b89063894d5ff4af7a7e676d54c00 /include/services.h
parentba4c7d813808cad3dd79bfb58025b61506482252 (diff)
Added in support for OperServ and MemoServ into SQL
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2822 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'include/services.h')
-rw-r--r--include/services.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/include/services.h b/include/services.h
index 10304c757..e924a5238 100644
--- a/include/services.h
+++ b/include/services.h
@@ -362,7 +362,6 @@ struct EList;
typedef struct bandata_ BanData;
typedef struct mailinfo_ MailInfo;
typedef struct akill_ Akill;
-typedef struct sxline_ SXLine;
typedef struct exception_ Exception;
typedef struct session_ Session;
@@ -842,7 +841,14 @@ struct akill_ {
/* Structure for OperServ SGLINE and SZLINE commands */
-struct sxline_ {
+enum SXLineType
+{
+ SX_SGLINE,
+ SX_SQLINE,
+ SX_SZLINE
+};
+
+struct SXLine {
char *mask;
char *by;
char *reason;