00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
#ifndef APU_VERSION_H
00017
#define APU_VERSION_H
00018
00019
#include "apr_version.h"
00020
00021
#include "apu.h"
00022
00023
#ifdef __cplusplus
00024
extern "C" {
00025
#endif
00026
00047
00048
00049
00050
00056 #define APU_MAJOR_VERSION 0
00057
00062 #define APU_MINOR_VERSION 9
00063
00065 #define APU_PATCH_VERSION 5
00066
00071 #define APU_IS_DEV_VERSION
00072
00073
00075 #define APU_VERSION_STRING \
00076
APR_STRINGIFY(APU_MAJOR_VERSION) "." \
00077
APR_STRINGIFY(APU_MINOR_VERSION) "." \
00078
APR_STRINGIFY(APU_PATCH_VERSION) \
00079
APU_IS_DEV_STRING
00080
00087
APU_DECLARE(
void) apu_version(apr_version_t *pvsn);
00088
00090 APU_DECLARE(const
char *) apu_version_string(
void);
00091
00092
00094 #ifdef APU_IS_DEV_VERSION
00095 #define APU_IS_DEV_STRING "-dev"
00096 #else
00097 #define APU_IS_DEV_STRING ""
00098 #endif
00099
00100 #ifdef __cplusplus
00101 }
00102 #endif
00103
00104 #endif