Support Watt-32 under Win32.
[platform/upstream/c-ares.git] / ares_version.h
1 /* $Id$ */
2
3 #ifndef ARES__VERSION_H
4 #define ARES__VERSION_H
5
6 #define ARES_VERSION_MAJOR 1
7 #define ARES_VERSION_MINOR 5
8 #define ARES_VERSION_PATCH 3
9 #define ARES_VERSION ((ARES_VERSION_MAJOR<<16)|\
10                        (ARES_VERSION_MINOR<<8)|\
11                        (ARES_VERSION_PATCH))
12 #define ARES_VERSION_STR "1.5.3-CVS"
13
14 #ifdef  __cplusplus
15 extern "C" {
16 #endif
17
18 const char *ares_version(int *version);
19
20 #ifdef  __cplusplus
21 }
22 #endif
23
24 #endif
25