00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00021
#ifndef APU_COMPAT_H
00022
#define APU_COMPAT_H
00023
00030
00031
00032
00033
#include "apr_compat.h"
00034
00035
00036
00037
00039 #define ap_base64decode apr_base64_decode
00040
00041 #define ap_base64decode_binary apr_base64_decode_binary
00042
00043 #define ap_base64decode_len apr_base64_decode_len
00044
00045 #define ap_base64encode apr_base64_encode
00046
00047 #define ap_base64encode_binary apr_base64_encode_binary
00048
00049 #define ap_base64encode_len apr_base64_encode_len
00050
00051 #define ap_hook_deregister_all apr_hook_deregister_all
00052
00053 #define ap_hook_sort_register apr_hook_sort_register
00054
00055 #define ap_show_hook apr_hook_debug_show
00056
00057
00058
00059
00061 #define ap_parseHTTPdate apr_date_parse_http
00062
00063 #define ap_checkmask apr_date_checkmask
00064
00065
00066
00067
00069 #define ap_text apr_text
00070
00071 #define ap_text_header apr_text_header
00072
00073 #define ap_text_append apr_text_append
00074
00076 #define AP_XML_NS_DAV_ID APR_XML_NS_DAV_ID
00077
00078 #define AP_XML_NS_NONE APR_XML_NS_NONE
00079
00080 #define AP_XML_NS_ERROR_BASE APR_XML_NS_ERROR_BASE
00081
00082 #define AP_XML_NS_IS_ERROR(e) APR_XML_NS_IS_ERROR(e)
00083
00084 #define AP_XML_ELEM_IS_EMPTY(e) APR_XML_ELEM_IS_EMPTY(e)
00085
00087 #define ap_xml_attr apr_xml_attr
00088
00089 #define ap_xml_elem apr_xml_elem
00090
00091 #define ap_xml_doc apr_xml_doc
00092
00094 #define ap_xml_to_text apr_xml_to_text
00095
00096 #define AP_XML_X2T_FULL APR_XML_X2T_FULL
00097
00098 #define AP_XML_X2T_INNER APR_XML_X2T_INNER
00099
00100 #define AP_XML_X2T_LANG_INNER APR_XML_X2T_LANG_INNER
00101
00102 #define AP_XML_X2T_FULL_NS_LANG APR_XML_X2T_FULL_NS_LANG
00103
00105 #define ap_xml_empty_elem apr_xml_empty_elem
00106
00107 #define ap_xml_quote_string apr_xml_quote_string
00108
00109 #define ap_xml_quote_elem apr_xml_quote_elem
00110
00111 #define ap_xml_insert_uri apr_xml_insert_uri
00112
00113 #define AP_XML_GET_URI_ITEM(a,i) APR_XML_GET_URI_ITEM(a,i)
00114
00115
#endif