Add compilation guard; prepare for #inclusion in C++
authorscottmk <scottmk@9efc2488-bf62-4759-914b-345cdb29e865>
Thu, 8 Jan 2009 14:50:18 +0000 (14:50 +0000)
committerscottmk <scottmk@9efc2488-bf62-4759-914b-345cdb29e865>
Thu, 8 Jan 2009 14:50:18 +0000 (14:50 +0000)
git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@1580 9efc2488-bf62-4759-914b-345cdb29e865

include/opensrf/osrf_application.h

index 6cc5ab8..8b1e247 100644 (file)
@@ -1,3 +1,6 @@
+#ifndef OSRF_APPLICATION_H
+#define OSRF_APPLICATION_H
+
 #include <opensrf/utils.h>
 #include <opensrf/log.h>
 #include <opensrf/osrf_app_session.h>
@@ -7,6 +10,9 @@
 #include <stdio.h>
 #include <dlfcn.h>
 
+#ifdef __cplusplus
+extern "C" {
+#endif
 
 /**
   All OpenSRF methods take the signature
@@ -181,4 +187,8 @@ int osrfAppRespondComplete( osrfMethodContext* context, const jsonObject* data )
 int osrfAppRunChildInit(const char* appname);
 void osrfAppRunExitCode();
 
+#ifdef __cplusplus
+}
+#endif
 
+#endif