richter 00/09/12 05:50:37
Modified: . embperl.h ep.h epdat.h
Log:
Revision Changes Path
1.19 +4 -4 embperl/embperl.h
Index: embperl.h
===================================================================
RCS file: /home/cvs/embperl/embperl.h,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- embperl.h 2000/09/12 12:49:47 1.18
+++ embperl.h 2000/09/12 12:50:31 1.19
@@ -68,8 +68,8 @@
rcUnclosedHtml,
rcUnclosedCmd,
rcNotAllowed,
- rcNotHashRef,
- rcTagMismatch
+ rcNotHashRef,
+ rcTagMismatch
} ;
@@ -103,8 +103,8 @@
dbgProfile = 0x100000,
dbgSession = 0x200000,
dbgImport = 0x400000,
- dbgBuildToken = 0x800000,
- dbgParse = 0x1000000,
+ dbgBuildToken = 0x800000,
+ dbgParse = 0x1000000,
dbgAll = -1
} ;
1.27 +48 -48 embperl/ep.h
Index: ep.h
===================================================================
RCS file: /home/cvs/embperl/ep.h,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ep.h 2000/09/12 12:49:48 1.26
+++ ep.h 2000/09/12 12:50:31 1.27
@@ -147,9 +147,9 @@
#include "epnames.h"
-#ifdef EP2
-#include "epdom.h"
-#endif
+#ifdef EP2
+#include "epdom.h"
+#endif
#include "epdat.h"
#include "embperl.h"
@@ -242,12 +242,12 @@
void NewEscMode (/*i/o*/ register req * r,
SV * pSV) ;
-
-
-int AddMagicAV (/*i/o*/ register req * r,
- /*in*/ char * sVarName,
- /*in*/ MGVTBL * pVirtTab) ;
-
+
+
+int AddMagicAV (/*i/o*/ register req * r,
+ /*in*/ char * sVarName,
+ /*in*/ MGVTBL * pVirtTab) ;
+
/* ---- from epio.c ----- */
@@ -379,14 +379,14 @@
int ProcessCmd (/*i/o*/ register req * r,
/*in*/ struct tCmd * pCmd,
/*in*/ const char * sArg) ;
-
-
-SV * SplitFdat (/*i/o*/ register req * r,
- /*in*/ SV ** ppSVfdat,
- /*out*/ SV ** ppSVerg,
- /*in*/ char * pName,
- /*in*/ STRLEN nlen) ;
+
+SV * SplitFdat (/*i/o*/ register req * r,
+ /*in*/ SV ** ppSVfdat,
+ /*out*/ SV ** ppSVerg,
+ /*in*/ char * pName,
+ /*in*/ STRLEN nlen) ;
+
/* ---- from eputil.c ----- */
@@ -409,9 +409,9 @@
/*in*/ const char * sKey,
/*in*/ char * sDefault) ;
-char * GetHashValueStrDup (/*in*/ HV * pHash,
- /*in*/ const char * sKey,
- /*in*/ char * sDefault) ;
+char * GetHashValueStrDup (/*in*/ HV * pHash,
+ /*in*/ const char * sKey,
+ /*in*/ char * sDefault) ;
const char * GetHtmlArg (/*in*/ const char * pTag,
/*in*/ const char * pArg,
@@ -420,12 +420,12 @@
void OutputToHtml (/*i/o*/ register req * r,
/*i/o*/ const char * sData) ;
-void OutputEscape (/*i/o*/ register req * r,
- /*in*/ const char * sData,
- /*in*/ int nDataLen,
- /*in*/ struct tCharTrans * pEscTab,
- /*in*/ char cEscChar) ;
-
+void OutputEscape (/*i/o*/ register req * r,
+ /*in*/ const char * sData,
+ /*in*/ int nDataLen,
+ /*in*/ struct tCharTrans * pEscTab,
+ /*in*/ char cEscChar) ;
+
int TransHtml (/*i/o*/ register req * r,
/*i/o*/ char * sData,
/*in*/ int nLen) ;
@@ -434,10 +434,10 @@
/*i/o*/ SV * pSV) ;
int GetLineNo (/*i/o*/ register req * r) ;
+
+int GetLineNoOf (/*i/o*/ register req * r,
+ /*in*/ char * pPos) ;
-int GetLineNoOf (/*i/o*/ register req * r,
- /*in*/ char * pPos) ;
-
#ifndef WIN32
#define strnicmp strncasecmp
#endif
@@ -474,13 +474,13 @@
/*in*/ int nFilepos,
/*out*/ SV ** pRet) ;
-#ifdef EP2
-int EvalStore (/*i/o*/ register req * r,
- /*in*/ const char * sArg,
- /*in*/ int nFilepos,
- /*out*/ SV ** pRet) ;
-#endif
-
+#ifdef EP2
+int EvalStore (/*i/o*/ register req * r,
+ /*in*/ const char * sArg,
+ /*in*/ int nFilepos,
+ /*out*/ SV ** pRet) ;
+#endif
+
int EvalTrans (/*i/o*/ register req * r,
/*in*/ char * sArg,
/*in*/ int nFilepos,
@@ -508,20 +508,20 @@
/*in*/ const char * sName) ;
int EvalMain (/*i/o*/ register req * r) ;
+
+
+#ifdef EP2
+int CallStoredCV (/*i/o*/ register req * r,
+ /*in*/ const char * sArg,
+ /*in*/ CV * pSub,
+ /*in*/ int numArgs,
+ /*in*/ SV ** pArgs,
+ /*in*/ int flags,
+ /*out*/ SV ** pRet) ;
+#endif
+
+
-
-#ifdef EP2
-int CallStoredCV (/*i/o*/ register req * r,
- /*in*/ const char * sArg,
- /*in*/ CV * pSub,
- /*in*/ int numArgs,
- /*in*/ SV ** pArgs,
- /*in*/ int flags,
- /*out*/ SV ** pRet) ;
-#endif
-
-
-
/* ---- from epdbg.c ----- */
int SetupDebugger (/*i/o*/ register req * r) ;
1.20 +23 -23 embperl/epdat.h
Index: epdat.h
===================================================================
RCS file: /home/cvs/embperl/epdat.h,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- epdat.h 2000/09/12 12:49:48 1.19
+++ epdat.h 2000/09/12 12:50:31 1.20
@@ -13,23 +13,23 @@
###################################################################################*/
-
-#ifdef EP2
-/*-----------------------------------------------------------------*/
-/* */
-/* Processor */
-/* */
-/*-----------------------------------------------------------------*/
-
-
-typedef struct tProcessor
- {
- int (* pCompiler)(tReq *, tDomTree *, tNode) ;
- } tProcessor ;
-
-#endif
-
+#ifdef EP2
+/*-----------------------------------------------------------------*/
+/* */
+/* Processor */
+/* */
+/*-----------------------------------------------------------------*/
+
+
+typedef struct tProcessor
+ {
+ int (* pCompiler)(tReq *, tDomTree *, tNode) ;
+ } tProcessor ;
+
+#endif
+
+
struct tReq ;
typedef struct tReq req ;
@@ -58,13 +58,13 @@
char cMultFieldSep ;
char * pOpenBracket ;
char * pCloseBracket ;
-#ifdef EP2
- bool bEP1Compat ; /* run in Embperl 1.x compatible mode */
- tProcessor ** pProcessor ; /* [array] processors used to process the file */
- char ** sExpiresKey ; /* [array] Key used to store expires setting */
- double * nExpiresAt ; /* [array] Data expiers at */
- SV ** pExpiresCV ; /* [array] sub that is called to determinate expiration
*/
-#endif
+#ifdef EP2
+ bool bEP1Compat ; /* run in Embperl 1.x compatible mode */
+ tProcessor ** pProcessor ; /* [array] processors used to process the file */
+ char ** sExpiresKey ; /* [array] Key used to store expires setting */
+ double * nExpiresAt ; /* [array] Data expiers at */
+ SV ** pExpiresCV ; /* [array] sub that is called to determinate expiration
*/
+#endif
char * sPath ; /* file search path */
char * sReqFilename ; /* filename of original request */
} tConf ;
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]