20 #define ENCIO_INPUT 0x01
21 #define ENCIO_OUTPUT 0x02
22 #define ENCIO_INPUT_CHECKS 0x04
23 #define ENCIO (ENCIO_INPUT|ENCIO_OUTPUT|ENCIO_INPUT_CHECKS)
24 #define ENCIO_SKIPTO 0x10
28 #define XML2ENC_DECLARE(type) type
29 #define XML2ENC_DECLARE_NONSTD(type) type
30 #define XML2ENC_DECLARE_DATA
31 #elif defined(XML2ENC_DECLARE_STATIC)
32 #define XML2ENC_DECLARE(type) type __stdcall
33 #define XML2ENC_DECLARE_NONSTD(type) type
34 #define XML2ENC_DECLARE_DATA
35 #elif defined(XML2ENC_DECLARE_EXPORT)
36 #define XML2ENC_DECLARE(type) __declspec(dllexport) type __stdcall
37 #define XML2ENC_DECLARE_NONSTD(type) __declspec(dllexport) type
38 #define XML2ENC_DECLARE_DATA __declspec(dllexport)
40 #define XML2ENC_DECLARE(type) __declspec(dllimport) type __stdcall
41 #define XML2ENC_DECLARE_NONSTD(type) __declspec(dllimport) type
42 #define XML2ENC_DECLARE_DATA __declspec(dllimport)
#define APR_DECLARE_EXTERNAL_HOOK(ns, link, ret, name, args)
Definition: apr_hooks.h:118
#define APR_DECLARE_OPTIONAL_FN(ret, name, args)
Definition: apr_optional.h:50
request_rec * r
Definition: mod_dav.h:518
apr_bucket_brigade ap_input_mode_t mode
Definition: mod_dav.h:2662
int apr_status_t
Definition: apr_errno.h:44
apr_status_t xml2enc_filter(request_rec *r, const char *enc, unsigned int mode)
apr_status_t xml2enc_charset(request_rec *r, xmlCharEncoding *enc, const char **cenc)
The representation of a filter chain.
Definition: util_filter.h:278
A structure that represents the current request.
Definition: httpd.h:856