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 / F277244_apr_version.h < prev    next >
C/C++ Source or Header  |  2004-02-13  |  3KB  |  115 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 APR_VERSION_H
  17. #define APR_VERSION_H
  18.  
  19. #include "apr.h"
  20.  
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24.  
  25. /**
  26.  * @file apr_version.h
  27.  * @brief APR Versioning Interface
  28.  * 
  29.  * APR's Version
  30.  *
  31.  * There are several different mechanisms for accessing the version. There
  32.  * is a string form, and a set of numbers; in addition, there are constants
  33.  * which can be compiled into your application, and you can query the library
  34.  * being used for its actual version.
  35.  *
  36.  * Note that it is possible for an application to detect that it has been
  37.  * compiled against a different version of APR by use of the compile-time
  38.  * constants and the use of the run-time query function.
  39.  *
  40.  * APR version numbering follows the guidelines specified in:
  41.  *
  42.  *     http://apr.apache.org/versioning.html
  43.  */
  44.  
  45. /* The numeric compile-time version constants. These constants are the
  46.  * authoritative version numbers for APR. 
  47.  */
  48.  
  49. /** major version 
  50.  * Major API changes that could cause compatibility problems for older
  51.  * programs such as structure size changes.  No binary compatibility is
  52.  * possible across a change in the major version.
  53.  */
  54. #define APR_MAJOR_VERSION       0
  55.  
  56. /** 
  57.  * Minor API changes that do not cause binary compatibility problems.
  58.  * Should be reset to 0 when upgrading APR_MAJOR_VERSION
  59.  */
  60. #define APR_MINOR_VERSION       9
  61.  
  62. /** patch level */
  63. #define APR_PATCH_VERSION       5
  64.  
  65.  
  66. /** 
  67.  *  This symbol is defined for internal, "development" copies of APR. This
  68.  *  symbol will be #undef'd for releases. 
  69.  */
  70. #define APR_IS_DEV_VERSION
  71.  
  72. /** The formatted string of APR's version */
  73. #define APR_VERSION_STRING \
  74.      APR_STRINGIFY(APR_MAJOR_VERSION) "." \
  75.      APR_STRINGIFY(APR_MINOR_VERSION) "." \
  76.      APR_STRINGIFY(APR_PATCH_VERSION) \
  77.      APR_IS_DEV_STRING
  78.  
  79.  
  80. /** 
  81.  * The numeric version information is broken out into fields within this 
  82.  * structure. 
  83.  */
  84. typedef struct {
  85.     int major;      /**< major number */
  86.     int minor;      /**< minor number */
  87.     int patch;      /**< patch number */
  88.     int is_dev;     /**< is development (1 or 0) */
  89. } apr_version_t;
  90.  
  91. /**
  92.  * Return APR's version information information in a numeric form.
  93.  *
  94.  *  @param pvsn Pointer to a version structure for returning the version
  95.  *              information.
  96.  */
  97. APR_DECLARE(void) apr_version(apr_version_t *pvsn);
  98.  
  99. /** Return APR's version information as a string. */
  100. APR_DECLARE(const char *) apr_version_string(void);
  101.  
  102.  
  103. /** Internal: string form of the "is dev" flag */
  104. #ifdef APR_IS_DEV_VERSION
  105. #define APR_IS_DEV_STRING "-dev"
  106. #else
  107. #define APR_IS_DEV_STRING ""
  108. #endif
  109.  
  110. #ifdef __cplusplus
  111. }
  112. #endif
  113.  
  114. #endif /* APR_VERSION_H */
  115.