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 / F277283_util_charset.h < prev    next >
C/C++ Source or Header  |  2004-02-09  |  2KB  |  54 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. #ifndef APACHE_UTIL_CHARSET_H
  17. #define APACHE_UTIL_CHARSET_H
  18.  
  19. #ifdef APACHE_XLATE
  20.  
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24.  
  25. /**
  26.  * @package charset conversion
  27.  */
  28. #include "apr_xlate.h"
  29.  
  30. /** On EBCDIC machine this is a translation handle used to translate the 
  31.  *  headers from the local machine format to ASCII for network transmission.
  32.  *  On an ASCII machine this is NULL */
  33. extern apr_xlate_t *ap_hdrs_to_ascii;
  34. /** On EBCDIC machine this is a translation handle used to translate the
  35.  *  headers from ASCII to the local machine format after network transmission.
  36.  *  On an ASCII machine this is NULL */
  37. extern apr_xlate_t *ap_hdrs_from_ascii;
  38. /** On EBCDIC machine this is a translation handle used to translate the 
  39.  *  content from the local machine format to ASCII for network transmission.
  40.  *  On an ASCII machine this is NULL */
  41. extern apr_xlate_t *ap_locale_to_ascii;
  42. /** On EBCDIC machine this is a translation handle used to translate the
  43.  *  content from ASCII to the local machine format after network transmission.
  44.  *  On an ASCII machine this is NULL */
  45. extern apr_xlate_t *ap_locale_from_ascii;
  46.  
  47. #ifdef __cplusplus
  48. }
  49. #endif
  50.  
  51. #endif  /* APACHE_XLATE */
  52.     
  53. #endif  /* !APACHE_UTIL_CHARSET_H */
  54.