opt
/
hc_python
/
lib
/
python3.12
/
site-packages
/
lxml
/
includes
/
libxslt
/
Go to Home Directory
+
Upload
Create File
root@0UT1S:~$
Execute
By Order of Mr.0UT1S
[DIR] ..
N/A
[DIR] __pycache__
N/A
__init__.py
0 bytes
Rename
Delete
attributes.h
957 bytes
Rename
Delete
documents.h
2.64 KB
Rename
Delete
extensions.h
6.74 KB
Rename
Delete
extra.h
1.60 KB
Rename
Delete
functions.h
1.93 KB
Rename
Delete
imports.h
1.80 KB
Rename
Delete
keys.h
1.13 KB
Rename
Delete
namespaces.h
1.63 KB
Rename
Delete
numbersInternals.h
1.97 KB
Rename
Delete
pattern.h
2.06 KB
Rename
Delete
preproc.h
896 bytes
Rename
Delete
security.h
2.59 KB
Rename
Delete
templates.h
2.21 KB
Rename
Delete
transform.h
6.16 KB
Rename
Delete
variables.h
3.07 KB
Rename
Delete
xslt.h
1.92 KB
Rename
Delete
xsltInternals.h
56.59 KB
Rename
Delete
xsltconfig.h
2.89 KB
Rename
Delete
xsltexports.h
1.10 KB
Rename
Delete
xsltlocale.h
942 bytes
Rename
Delete
xsltutils.h
8.87 KB
Rename
Delete
/* * Summary: macros for marking symbols as exportable/importable. * Description: macros for marking symbols as exportable/importable. * * Copy: See Copyright for the status of this software. */ #ifndef __XSLT_EXPORTS_H__ #define __XSLT_EXPORTS_H__ #if defined(_WIN32) || defined(__CYGWIN__) /** DOC_DISABLE */ #ifdef LIBXSLT_STATIC #define XSLTPUBLIC #elif defined(IN_LIBXSLT) #define XSLTPUBLIC __declspec(dllexport) #else #define XSLTPUBLIC __declspec(dllimport) #endif #define XSLTCALL __cdecl /** DOC_ENABLE */ #else /* not Windows */ /** * XSLTPUBLIC: * * Macro which declares a public symbol */ #define XSLTPUBLIC /** * XSLTCALL: * * Macro which declares the calling convention for exported functions */ #define XSLTCALL #endif /* platform switch */ /* * XSLTPUBFUN: * * Macro which declares an exportable function */ #define XSLTPUBFUN XSLTPUBLIC /** * XSLTPUBVAR: * * Macro which declares an exportable variable */ #define XSLTPUBVAR XSLTPUBLIC extern /* Compatibility */ #if !defined(LIBXSLT_PUBLIC) #define LIBXSLT_PUBLIC XSLTPUBVAR #endif #endif /* __XSLT_EXPORTS_H__ */
Save