Changed prototype for chr_map_input - added const.
[idzebra-moved-to-github.git] / isam / physical.h
index fe0766c..56caf4d 100644 (file)
@@ -4,7 +4,11 @@
  * Sebastian Hammer, Adam Dickmeiss
  *
  * $Log: physical.h,v $
- * Revision 1.3  1994-09-26 17:11:32  quinn
+ * Revision 1.4  1997-09-05 15:30:10  adam
+ * Changed prototype for chr_map_input - added const.
+ * Added support for C++, headers uses extern "C" for public definitions.
+ *
+ * Revision 1.3  1994/09/26 17:11:32  quinn
  * Trivial
  *
  * Revision 1.2  1994/09/26  17:06:37  quinn
 
 #include "memory.h"
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 void is_p_sync(is_mtable *tab);
 void is_p_unmap(is_mtable *tab);
 void is_p_align(is_mtable *tab);
@@ -27,4 +35,9 @@ void is_p_remap(is_mtable *tab);
 int is_p_read_partial(is_mtable *tab, is_mblock *block);
 int is_p_read_full(is_mtable *tab, is_mblock *block);
 
+#ifdef __cplusplus
+}
+#endif
+
+
 #endif