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

include/opensrf/osrf_hash.h

index 544805a..47b9735 100644 (file)
@@ -5,6 +5,10 @@
 #include <opensrf/string_array.h>
 #include <opensrf/osrf_list.h>
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 struct _osrfHashStruct;
 typedef struct _osrfHashStruct osrfHash;
 
@@ -83,4 +87,8 @@ void osrfHashIteratorFree( osrfHashIterator* itr );
 
 void osrfHashIteratorReset( osrfHashIterator* itr );
 
+#ifdef __cplusplus
+}
+#endif
+
 #endif