summaryrefslogtreecommitdiffstats
path: root/nanohttp/nanohttp-server.h
diff options
context:
space:
mode:
authorGravatar snowdrop2006-02-27 00:26:23 +0000
committerGravatar snowdrop2006-02-27 00:26:23 +0000
commitc734a9e1a4fc7418911d8c50817d619221d2cd42 (patch)
tree78c4cb6456957d0dc606e82b10b12d9a539c7e02 /nanohttp/nanohttp-server.h
parentf2798d9d9f26f9b0fd730339feb10679fec753df (diff)
downloadcsoap-c734a9e1a4fc7418911d8c50817d619221d2cd42.tar.gz
csoap-c734a9e1a4fc7418911d8c50817d619221d2cd42.tar.bz2
Added c++ macro
#ifdef __cplusplus extern "C" { #endif ... #ifdef __cplusplus } #endf
Diffstat (limited to 'nanohttp/nanohttp-server.h')
-rw-r--r--nanohttp/nanohttp-server.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/nanohttp/nanohttp-server.h b/nanohttp/nanohttp-server.h
index 4c50d23..bf7405d 100644
--- a/nanohttp/nanohttp-server.h
+++ b/nanohttp/nanohttp-server.h
@@ -1,5 +1,5 @@
/******************************************************************
- * $Id: nanohttp-server.h,v 1.13 2006/02/18 20:14:36 snowdrop Exp $
+ * $Id: nanohttp-server.h,v 1.14 2006/02/27 00:26:23 snowdrop Exp $
*
* CSOAP Project: A http client/server library in C
* Copyright (C) 2003 Ferhat Ayaz
@@ -25,6 +25,10 @@
#define NANO_HTTP_SERVER_H
+#ifdef __cplusplus
+extern "C" {
+#endif
+
#include <nanohttp/nanohttp-common.h>
#include <nanohttp/nanohttp-socket.h>
#include <nanohttp/nanohttp-request.h>
@@ -133,4 +137,8 @@ herror_t httpd_mime_send_file(httpd_conn_t * conn,
herror_t httpd_mime_end(httpd_conn_t * conn);
+#ifdef __cplusplus
+}
+#endif
+
#endif