about summary refs log tree commit diff
path: root/src/ngircd/parse.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ngircd/parse.h')
-rw-r--r--src/ngircd/parse.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/ngircd/parse.h b/src/ngircd/parse.h
index e7a00879..a3f764ec 100644
--- a/src/ngircd/parse.h
+++ b/src/ngircd/parse.h
@@ -8,7 +8,7 @@
  * (at your option) any later version.
  * Please read the file COPYING, README and AUTHORS for more information.
  *
- * $Id: parse.h,v 1.12 2007/11/21 12:16:36 alex Exp $
+ * $Id: parse.h,v 1.13 2008/01/13 16:12:49 fw Exp $
  *
  * IRC command parser and validator (header)
  */
@@ -38,18 +38,10 @@ typedef struct _COMMAND
 } COMMAND;
 
 
-typedef struct _NUMERIC
-{
-	int numeric;			/* numeric */
-	bool (*function) PARAMS(( CLIENT *Client, REQUEST *Request ));
-} NUMERIC;
-
-
 GLOBAL bool Parse_Request PARAMS((CONN_ID Idx, char *Request ));
 
 GLOBAL COMMAND *Parse_GetCommandStruct PARAMS(( void ));
 
-
 #endif