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.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
index 7de7686b..09983ab7 100644
--- a/src/include/microhttpd.h
+++ b/src/include/microhttpd.h
@@ -132,7 +132,7 @@ typedef intptr_t ssize_t;
132 * Current version of the library. 132 * Current version of the library.
133 * 0x01093001 = 1.9.30-1. 133 * 0x01093001 = 1.9.30-1.
134 */ 134 */
135#define MHD_VERSION 0x00097002 135#define MHD_VERSION 0x00097101
136 136
137/** 137/**
138 * Operational results from MHD calls. 138 * Operational results from MHD calls.
@@ -180,7 +180,7 @@ enum MHD_Result
180#define _MHD_EXTERN extern 180#define _MHD_EXTERN extern
181#elif defined (_WIN32) && defined(MHD_W32DLL) 181#elif defined (_WIN32) && defined(MHD_W32DLL)
182/* Define MHD_W32DLL when using MHD as W32 .DLL to speed up linker a little */ 182/* Define MHD_W32DLL when using MHD as W32 .DLL to speed up linker a little */
183#define _MHD_EXTERN __declspec(dllimport) 183#define _MHD_EXTERN __declspec (dllimport)
184#else 184#else
185#define _MHD_EXTERN extern 185#define _MHD_EXTERN extern
186#endif 186#endif
@@ -262,10 +262,10 @@ typedef SOCKET MHD_socket;
262#ifndef _MHD_DEPR_FUNC 262#ifndef _MHD_DEPR_FUNC
263#if defined(_MSC_FULL_VER) && _MSC_VER + 0 >= 1400 263#if defined(_MSC_FULL_VER) && _MSC_VER + 0 >= 1400
264/* VS 2005 or later */ 264/* VS 2005 or later */
265#define _MHD_DEPR_FUNC(msg) __declspec(deprecated (msg)) 265#define _MHD_DEPR_FUNC(msg) __declspec (deprecated (msg))
266#elif defined(_MSC_FULL_VER) && _MSC_VER + 0 >= 1310 266#elif defined(_MSC_FULL_VER) && _MSC_VER + 0 >= 1310
267/* VS .NET 2003 deprecation do not support custom messages */ 267/* VS .NET 2003 deprecation do not support custom messages */
268#define _MHD_DEPR_FUNC(msg) __declspec(deprecated) 268#define _MHD_DEPR_FUNC(msg) __declspec (deprecated)
269#elif (__GNUC__ + 0 >= 5) || (defined (__clang__) && \ 269#elif (__GNUC__ + 0 >= 5) || (defined (__clang__) && \
270 (__clang_major__ + 0 > 2 || (__clang_major__ + 0 == 2 && __clang_minor__ >= \ 270 (__clang_major__ + 0 > 2 || (__clang_major__ + 0 == 2 && __clang_minor__ >= \
271 9))) /* FIXME: earlier versions not tested */ 271 9))) /* FIXME: earlier versions not tested */