Prepare for #inclusion in C++
authorscottmk <scottmk@9efc2488-bf62-4759-914b-345cdb29e865>
Thu, 8 Jan 2009 20:57:55 +0000 (20:57 +0000)
committerscottmk <scottmk@9efc2488-bf62-4759-914b-345cdb29e865>
Thu, 8 Jan 2009 20:57:55 +0000 (20:57 +0000)
git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@1600 9efc2488-bf62-4759-914b-345cdb29e865

src/jserver/osrf_chat.h

index fb24340..df9b273 100644 (file)
@@ -33,6 +33,10 @@ GNU General Public License for more details.
 #include <libxml/globals.h>
 #include <libxml/xmlerror.h>
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 /* client to server XML */
 #define OSRF_CHAT_START_STREAM "<?xml version='1.0'?><stream:stream "\
        "xmlns:stream='http://etherx.jabber.org/streams' xmlns='jabber:client' "\
@@ -258,6 +262,9 @@ static xmlSAXHandler osrfChatSaxHandlerStruct = {
 
 static const xmlSAXHandlerPtr osrfChatSaxHandler = &osrfChatSaxHandlerStruct;
 
+#ifdef __cplusplus
+}
+#endif
 
 #endif