!C99Shell v. 1.0 pre-release build #13!

Software: Apache/2.0.54 (Unix) mod_perl/1.99_09 Perl/v5.8.0 mod_ssl/2.0.54 OpenSSL/0.9.7l DAV/2 FrontPage/5.0.2.2635 PHP/4.4.0 mod_gzip/2.0.26.1a 

uname -a: Linux snow.he.net 4.4.276-v2-mono-1 #1 SMP Wed Jul 21 11:21:17 PDT 2021 i686 

uid=99(nobody) gid=98(nobody) groups=98(nobody) 

Safe-mode: OFF (not secure)

/usr/include/libxslt/   drwxr-xr-x
Free 318.35 GB of 458.09 GB (69.49%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     extensions.h (5.47 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*
 * extension.h: interface for the extension support
 *
 * See Copyright for the status of this software.
 *
 * daniel@veillard.com
 */

#ifndef __XML_XSLT_EXTENSION_H__
#define __XML_XSLT_EXTENSION_H__

#include "libxml/xpath.h"
#include "xsltInternals.h"

#ifdef __cplusplus
extern "C" {
#endif

/**
 * Extension Modules API.
 */

/**
 * xsltStyleExtInitFunction:
 * @ctxt:  an XSLT stylesheet
 * @URI:  the namespace URI for the extension
 *
 * A function called at initialization time of an XSLT extension module.
 *
 * Returns a pointer to the module specific data for this transformation.
 */
typedef void * (*xsltStyleExtInitFunction)    (xsltStylesheetPtr style,
                         const xmlChar *URI);

/**
 * xsltStyleExtShutdownFunction:
 * @ctxt:  an XSLT stylesheet
 * @URI:  the namespace URI for the extension
 * @data:  the data associated to this module
 *
 * A function called at shutdown time of an XSLT extension module.
 */
typedef void (*xsltStyleExtShutdownFunction)    (xsltStylesheetPtr style,
                         const xmlChar *URI,
                         void *data);

/**
 * xsltExtInitFunction:
 * @ctxt:  an XSLT transformation context
 * @URI:  the namespace URI for the extension
 *
 * A function called at initialization time of an XSLT extension module.
 *
 * Returns a pointer to the module specific data for this transformation.
 */
typedef void * (*xsltExtInitFunction)    (xsltTransformContextPtr ctxt,
                     const xmlChar *URI);

/**
 * xsltExtShutdownFunction:
 * @ctxt:  an XSLT transformation context
 * @URI:  the namespace URI for the extension
 * @data:  the data associated to this module
 *
 * A function called at shutdown time of an XSLT extension module.
 */
typedef void (*xsltExtShutdownFunction) (xsltTransformContextPtr ctxt,
                     const xmlChar *URI,
                     void *data);

int        xsltRegisterExtModule    (const xmlChar *URI,
                     xsltExtInitFunction initFunc,
                     xsltExtShutdownFunction shutdownFunc);
int        xsltRegisterExtModuleFull
                (const xmlChar * URI,
                 xsltExtInitFunction initFunc,
                 xsltExtShutdownFunction shutdownFunc,
                 xsltStyleExtInitFunction styleInitFunc,
                 xsltStyleExtShutdownFunction styleShutdownFunc);

int        xsltUnregisterExtModule    (const xmlChar * URI);

void *        xsltGetExtData        (xsltTransformContextPtr ctxt,
                     const xmlChar *URI);

void *        xsltStyleGetExtData    (xsltStylesheetPtr style,
                     const xmlChar *URI);

void        xsltShutdownCtxtExts    (xsltTransformContextPtr ctxt);

void        xsltShutdownExts    (xsltStylesheetPtr style);

xsltTransformContextPtr xsltXPathGetTransformContext
                    (xmlXPathParserContextPtr ctxt);

/*
 * extension functions
*/
int    xsltRegisterExtModuleFunction    (const xmlChar *name,
                     const xmlChar *URI,
                     xmlXPathFunction function);
xmlXPathFunction
    xsltExtFunctionLookup        (xsltTransformContextPtr ctxt,
                     const xmlChar *name,
                     const xmlChar *URI);
xmlXPathFunction
    xsltExtModuleFunctionLookup    (const xmlChar *name,
                     const xmlChar *URI);
int    xsltUnregisterExtModuleFunction    (const xmlChar *name,
                     const xmlChar *URI);

/*
 * extension elements
 */
typedef xsltElemPreCompPtr (*xsltPreComputeFunction)
                        (xsltStylesheetPtr style,
                     xmlNodePtr inst,
                     xsltTransformFunction function);

xsltElemPreCompPtr xsltNewElemPreComp    (xsltStylesheetPtr style,
                     xmlNodePtr inst,
                     xsltTransformFunction function);
void    xsltInitElemPreComp        (xsltElemPreCompPtr comp,
                     xsltStylesheetPtr style,
                     xmlNodePtr inst,
                     xsltTransformFunction function,
                     xsltElemPreCompDeallocator freeFunc);

int    xsltRegisterExtModuleElement    (const xmlChar *name,
                     const xmlChar *URI,
                     xsltPreComputeFunction precomp,
                     xsltTransformFunction transform);
xsltTransformFunction xsltExtElementLookup(xsltTransformContextPtr ctxt,
                     const xmlChar *name,
                     const xmlChar *URI);
xsltTransformFunction xsltExtModuleElementLookup(const xmlChar *name,
                     const xmlChar *URI);
xsltPreComputeFunction xsltExtModuleElementPreComputeLookup (const xmlChar *name,
                     const xmlChar *URI);
int    xsltUnregisterExtModuleElement    (const xmlChar *name,
                     const xmlChar *URI);

/*
 * top-level elements
 */
typedef void (*xsltTopLevelFunction)    (xsltStylesheetPtr style,
                     xmlNodePtr inst);

int    xsltRegisterExtModuleTopLevel    (const xmlChar *name,
                     const xmlChar *URI,
                     xsltTopLevelFunction function);
xsltTopLevelFunction xsltExtModuleTopLevelLookup (const xmlChar *name,
                     const xmlChar *URI);
int    xsltUnregisterExtModuleTopLevel    (const xmlChar *name,
                     const xmlChar *URI);


/* These 2 functions are deprecated for use within modules. */
int        xsltRegisterExtFunction    (xsltTransformContextPtr ctxt,
                     const xmlChar *name,
                     const xmlChar *URI,
                     xmlXPathFunction function);
int        xsltRegisterExtElement    (xsltTransformContextPtr ctxt,
                     const xmlChar *name,
                     const xmlChar *URI,
                     xsltTransformFunction function);

/*
 * Extension Prefix handling API.
 * Those are used by the XSLT (pre)processor.
 */

int        xsltRegisterExtPrefix    (xsltStylesheetPtr style,
                     const xmlChar *prefix,
                     const xmlChar *URI);
int        xsltCheckExtPrefix    (xsltStylesheetPtr style,
                     const xmlChar *prefix);
int        xsltInitCtxtExts    (xsltTransformContextPtr ctxt);
void        xsltFreeCtxtExts    (xsltTransformContextPtr ctxt);
void        xsltFreeExts        (xsltStylesheetPtr style);

xsltElemPreCompPtr xsltPreComputeExtModuleElement(xsltStylesheetPtr style,
                     xmlNodePtr inst);

/**
 * Test module http://xmlsoft.org/XSLT/
 */
void    xsltRegisterTestModule        (void);
void    xsltDebugDumpExtensions(FILE * output);


#ifdef __cplusplus
}
#endif

#endif /* __XML_XSLT_EXTENSION_H__ */


:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0046 ]--