aboutsummaryrefslogtreecommitdiff
path: root/src/include/microhttpd.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/microhttpd.h')
-rw-r--r--src/include/microhttpd.h14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
index 0eae3f9f..b66f4b3d 100644
--- a/src/include/microhttpd.h
+++ b/src/include/microhttpd.h
@@ -96,7 +96,7 @@ extern "C"
96 * they are parsed as decimal numbers. 96 * they are parsed as decimal numbers.
97 * Example: 0x01093001 = 1.9.30-1. 97 * Example: 0x01093001 = 1.9.30-1.
98 */ 98 */
99#define MHD_VERSION 0x00097543 99#define MHD_VERSION 0x00097544
100 100
101/* If generic headers don't work on your platform, include headers 101/* If generic headers don't work on your platform, include headers
102 which define 'va_list', 'size_t', 'ssize_t', 'intptr_t', 'off_t', 102 which define 'va_list', 'size_t', 'ssize_t', 'intptr_t', 'off_t',
@@ -5936,6 +5936,18 @@ MHD_get_version (void);
5936 5936
5937 5937
5938/** 5938/**
5939 * Obtain the version of this library as a binary value.
5940 *
5941 * @return version binary value, e.g. "0x00090900" (#MHD_VERSION of
5942 * compiled MHD binary)
5943 * @note Available since #MHD_VERSION 0x00097544
5944 * @ingroup specialized
5945 */
5946_MHD_EXTERN uint32_t
5947MHD_get_version_bin (void);
5948
5949
5950/**
5939 * Types of information about MHD features, 5951 * Types of information about MHD features,
5940 * used by #MHD_is_feature_supported(). 5952 * used by #MHD_is_feature_supported().
5941 */ 5953 */