Path: blob/master/venv/Lib/site-packages/lxml/includes/libxslt/libxslt.h
811 views
/*1* Summary: internal header only used during the compilation of libxslt2* Description: internal header only used during the compilation of libxslt3*4* Copy: See Copyright for the status of this software.5*6* Author: Daniel Veillard7*/89#ifndef __XSLT_LIBXSLT_H__10#define __XSLT_LIBXSLT_H__1112#if defined(WIN32) && !defined (__CYGWIN__) && !defined (__MINGW32__)13#include <win32config.h>14#else15#include "config.h"16#endif1718#include <libxslt/xsltconfig.h>19#include <libxml/xmlversion.h>2021#if !defined LIBXSLT_PUBLIC22#if (defined (__CYGWIN__) || defined _MSC_VER) && !defined IN_LIBXSLT && !defined LIBXSLT_STATIC23#define LIBXSLT_PUBLIC __declspec(dllimport)24#else25#define LIBXSLT_PUBLIC26#endif27#endif2829#if defined(_MSC_VER) || defined(__MINGW32__)30#include <io.h>31#include <direct.h>32#define mkdir(p,m) _mkdir(p)33#endif3435#endif /* ! __XSLT_LIBXSLT_H__ */363738