home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / CMCD1104.ISO / Software / Complet / Apache / apache_2.0.52-win32-x86-no_ssl.msi / Data.Cab / F277249_apu_compat.h < prev    next >
C/C++ Source or Header  |  2004-02-13  |  4KB  |  116 lines

  1. /* Copyright 2000-2004 The Apache Software Foundation
  2.  *
  3.  * Licensed under the Apache License, Version 2.0 (the "License");
  4.  * you may not use this file except in compliance with the License.
  5.  * You may obtain a copy of the License at
  6.  *
  7.  *     http://www.apache.org/licenses/LICENSE-2.0
  8.  *
  9.  * Unless required by applicable law or agreed to in writing, software
  10.  * distributed under the License is distributed on an "AS IS" BASIS,
  11.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12.  * See the License for the specific language governing permissions and
  13.  * limitations under the License.
  14.  */
  15.  
  16. /**
  17.  * @file  apu_compat.h
  18.  * @brief APR-UTIL Compabitlity Functions
  19.  * @deprecated These functions are only present for historical purposes
  20.  */
  21. #ifndef APU_COMPAT_H
  22. #define APU_COMPAT_H
  23. /**
  24.  * @defgroup APR_Util_compat 1.3 Compatibility Functions
  25.  * @ingroup APR_Util
  26.  * @{
  27.  */
  28.  
  29.  
  30. /* Include the apr compatibility changes, since apr-util users are
  31.  * always apr users.
  32.  */
  33. #include "apr_compat.h"
  34.  
  35. /* --------------------------------------------------------------------
  36.  * redefine 1.3.x symbols to those that now live in libapr-util
  37.  */
  38. /** @deprecated @see apr_base64_decode */
  39. #define ap_base64decode apr_base64_decode
  40. /** @deprecated @see apr_base64_decode_binary */
  41. #define ap_base64decode_binary apr_base64_decode_binary
  42. /** @deprecated @see apr_base64_decode_len */
  43. #define ap_base64decode_len apr_base64_decode_len
  44. /** @deprecated @see apr_base64_encode */
  45. #define ap_base64encode apr_base64_encode
  46. /** @deprecated @see apr_base64_encode_binary */
  47. #define ap_base64encode_binary apr_base64_encode_binary
  48. /** @deprecated @see apr_base64_encode_len */
  49. #define ap_base64encode_len apr_base64_encode_len
  50. /** @deprecated @see apr_hook_deregister_all */
  51. #define ap_hook_deregister_all apr_hook_deregister_all
  52. /** @deprecated @see apr_hook_sort_register */
  53. #define ap_hook_sort_register apr_hook_sort_register
  54. /** @deprecated @see apr_hook_debug_show */
  55. #define ap_show_hook apr_hook_debug_show
  56.  
  57. /* --------------------------------------------------------------------
  58.  * the following symbols were moved from httpd-2.0/.../util_date.[ch]
  59.  */
  60. /** @deprecated @see apr_date_parse_http */
  61. #define ap_parseHTTPdate apr_date_parse_http
  62. /** @deprecated @see apr_date_checkmask */
  63. #define ap_checkmask apr_date_checkmask
  64.  
  65. /* --------------------------------------------------------------------
  66.  * the following symbols were moved from httpd-2.0/.../util_xml.[ch]
  67.  */
  68. /** @deprecated @see apr_text */
  69. #define ap_text apr_text
  70. /** @deprecated @see apr_text_header */
  71. #define ap_text_header apr_text_header
  72. /** @deprecated @see apr_text_append */
  73. #define ap_text_append apr_text_append
  74.  
  75. /** @deprecated @see APR_XML_NS_DAV_ID */
  76. #define AP_XML_NS_DAV_ID APR_XML_NS_DAV_ID
  77. /** @deprecated @see APR_XML_NS_NONE */
  78. #define AP_XML_NS_NONE APR_XML_NS_NONE
  79. /** @deprecated @see APR_XML_NS_ERROR_BASE */
  80. #define AP_XML_NS_ERROR_BASE APR_XML_NS_ERROR_BASE
  81. /** @deprecated @see APR_XML_NS_IS_ERROR */
  82. #define AP_XML_NS_IS_ERROR(e) APR_XML_NS_IS_ERROR(e)
  83. /** @deprecated @see APR_XML_ELEM_IS_EMPTY */
  84. #define AP_XML_ELEM_IS_EMPTY(e) APR_XML_ELEM_IS_EMPTY(e)
  85.  
  86. /** @deprecated @see apr_xml_attr */
  87. #define ap_xml_attr apr_xml_attr
  88. /** @deprecated @see apr_xml_elem */
  89. #define ap_xml_elem apr_xml_elem
  90. /** @deprecated @see apr_xml_doc */
  91. #define ap_xml_doc apr_xml_doc
  92.  
  93. /** @deprecated @see apr_xml_to_text */
  94. #define ap_xml_to_text apr_xml_to_text
  95. /** @deprecated @see APR_XML_X2T_FULL */
  96. #define AP_XML_X2T_FULL APR_XML_X2T_FULL
  97. /** @deprecated @see APR_XML_X2T_INNER */
  98. #define AP_XML_X2T_INNER APR_XML_X2T_INNER
  99. /** @deprecated @see APR_XML_X2T_LANG_INNER */
  100. #define AP_XML_X2T_LANG_INNER APR_XML_X2T_LANG_INNER
  101. /** @deprecated @see APR_XML_X2T_FULL_NS_LANG */
  102. #define AP_XML_X2T_FULL_NS_LANG APR_XML_X2T_FULL_NS_LANG
  103.  
  104. /** @deprecated @see apr_xml_empty_elem */
  105. #define ap_xml_empty_elem apr_xml_empty_elem
  106. /** @deprecated @see apr_xml_quote_string */
  107. #define ap_xml_quote_string apr_xml_quote_string
  108. /** @deprecated @see apr_xml_quote_elem */
  109. #define ap_xml_quote_elem apr_xml_quote_elem
  110. /** @deprecated @see apr_xml_insert_uri */
  111. #define ap_xml_insert_uri apr_xml_insert_uri
  112. /** @deprecated @see APR_XML_GET_URI_ITEM */
  113. #define AP_XML_GET_URI_ITEM(a,i) APR_XML_GET_URI_ITEM(a,i)
  114. /** @} */
  115. #endif /* APU_COMPAT_H */
  116.