Apache HTTPD
mod_xml2enc.h
Go to the documentation of this file.
1/* Licensed to the Apache Software Foundation (ASF) under one or more
2 * contributor license agreements. See the NOTICE file distributed with
3 * this work for additional information regarding copyright ownership.
4 * The ASF licenses this file to You under the Apache License, Version 2.0
5 * (the "License"); you may not use this file except in compliance with
6 * the License. You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef MOD_XML2ENC
18#define MOD_XML2ENC
19
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
25
26/* declarations to deal with WIN32 compile-flag-in-source-code crap */
27#if !defined(WIN32)
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)
39#else
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)
43#endif
44
47 const char** cenc));
48
50 (request_rec* r, const char* enc, unsigned int mode));
51
53 (ap_filter_t *f, char** bufp, apr_size_t* bytesp))
54
55#endif
request_rec * r
apr_file_t * f
apr_dbd_transaction_t int mode
Definition apr_dbd.h:261
#define APR_DECLARE_EXTERNAL_HOOK(ns, link, ret, name, args)
Definition apr_hooks.h:118
#define APR_DECLARE_OPTIONAL_FN(ret, name, args)
apr_size_t size
int apr_status_t
Definition apr_errno.h:44
static apr_status_t(* xml2enc_filter)(request_rec *, const char *, unsigned int)
static apr_status_t(* xml2enc_charset)(request_rec *, xmlCharEncoding *, const char **)
The representation of a filter chain.
A structure that represents the current request.
Definition httpd.h:845