[xslt] set/get functions for xslDebugStatus



Hi,

Could the following get/set functions to set/get the xslDebugStatus 
variable be added to xsltutils? In order to manipulate them from pascal, 
functions are needed (well, one can set variables but not without doing 
some dirty hacking).

Thanks,

Kasimier Buchcik

Index: xsltutils.c
===================================================================
RCS file: /cvs/gnome/libxslt/libxslt/xsltutils.c,v
retrieving revision 1.77
diff -r1.77 xsltutils.c
1734a1735,1757
 >  * xsltSetDebuggerStatus:
 >  * @value : the value to be set
 >  *
 >  * This function sets the value of xslDebugStatus.
 >  */
 > void
 > xsltSetDebuggerStatus(int value)
 > {
 >     xslDebugStatus = value;	
 > }
 >
 > /**
 >  * xsltGetDebuggerStatus:
 >  *
 >  * This function returns the value of xslDebugStatus.
 >  */
 > int
 > xsltGetDebuggerStatus(void)
 > {
 >     return(xslDebugStatus);	
 > }
 >
 > /**


Index: xsltutils.h
===================================================================
RCS file: /cvs/gnome/libxslt/libxslt/xsltutils.h,v
retrieving revision 1.37
diff -r1.37 xsltutils.h
231a232,235
 > XSLTPUBFUN void XSLTCALL
 > 		xsltSetDebuggerStatus		(int value);
 > XSLTPUBFUN int XSLTCALL
 > 		xsltGetDebuggerStatus		(void);




[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]