dougm 01/09/27 08:39:57
Modified: src/modules/perl modperl_cmd.h
Log:
add MP_CMD_SRV_DECLARE_FLAG
Revision Changes Path
1.8 +6 -0 modperl-2.0/src/modules/perl/modperl_cmd.h
Index: modperl_cmd.h
===================================================================
RCS file: /home/cvs/modperl-2.0/src/modules/perl/modperl_cmd.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- modperl_cmd.h 2001/09/27 15:28:51 1.7
+++ modperl_cmd.h 2001/09/27 15:39:57 1.8
@@ -8,9 +8,15 @@
#define MP_CMD_SRV_DECLARE(item) \
const char *modperl_cmd_##item(cmd_parms *parms, \
void *dummy, const char *arg)
+
#define MP_CMD_SRV_DECLARE2(item) \
const char *modperl_cmd_##item(cmd_parms *parms, \
void *dummy, const char *arg1, const char *arg2)
+
+#define MP_CMD_SRV_DECLARE_FLAG(item) \
+const char *modperl_cmd_##item(cmd_parms *parms, \
+ void *dummy, int on)
+
MP_CMD_SRV_DECLARE(trace);
MP_CMD_SRV_DECLARE(switches);
MP_CMD_SRV_DECLARE(modules);