From c734a9e1a4fc7418911d8c50817d619221d2cd42 Mon Sep 17 00:00:00 2001 From: snowdrop Date: Mon, 27 Feb 2006 00:26:23 +0000 Subject: Added c++ macro #ifdef __cplusplus extern "C" { #endif ... #ifdef __cplusplus } #endf --- nanohttp/nanohttp-mime.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'nanohttp/nanohttp-mime.h') diff --git a/nanohttp/nanohttp-mime.h b/nanohttp/nanohttp-mime.h index 7ee04b0..bf3c8c0 100755 --- a/nanohttp/nanohttp-mime.h +++ b/nanohttp/nanohttp-mime.h @@ -3,7 +3,7 @@ * | \/ | | | | \/ | | _/ * |_''_| |_| |_''_| |_'/ PARSER * -* $Id: nanohttp-mime.h,v 1.6 2006/01/10 11:29:05 snowdrop Exp $ +* $Id: nanohttp-mime.h,v 1.7 2006/02/27 00:26:23 snowdrop Exp $ * * CSOAP Project: A http client/server library in C * Copyright (C) 2003-2004 Ferhat Ayaz @@ -29,6 +29,10 @@ #ifndef NANO_HTTP_MIME_PARSER_H #define NANO_HTTP_MIME_PARSER_H +#ifdef __cplusplus +extern "C" { +#endif + #include #include #include @@ -44,5 +48,8 @@ herror_t mime_get_attachments(content_type_t * ctype, http_input_stream_t * in, attachments_t ** dest); +#ifdef __cplusplus +} +#endif #endif -- cgit v1.1-32-gdbae