Updated WIN32 code specific sections. Changed header.
[idzebra-moved-to-github.git] / isam / memory.h
index e1bd1f0..4a69110 100644 (file)
@@ -1,10 +1,17 @@
 /*
- * Copyright (C) 1994, Index Data I/S 
+ * Copyright (C) 1994-1999, Index Data
  * All rights reserved.
  * Sebastian Hammer, Adam Dickmeiss
  *
  * $Log: memory.h,v $
- * Revision 1.5  1996-03-11 14:52:25  quinn
+ * Revision 1.7  1999-02-02 14:51:21  adam
+ * Updated WIN32 code specific sections. Changed header.
+ *
+ * Revision 1.6  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.5  1996/03/11 14:52:25  quinn
  * Fixed update bug. Repeated insertion in the same area sometimes caused
  * problems.
  *
 #ifndef MEMORY_H
 #define MEMORY_H
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 extern int is_mbuf_size[3];
 
 typedef unsigned int ISAM_P;
@@ -105,4 +116,9 @@ int is_m_peek_record(is_mtable *tab, void *rec);
 int is_m_read_full(is_mtable *tab, is_mblock *mblock);
 int is_m_num_records(is_mtable *tab);
 
+#ifdef __cplusplus
+}
+#endif
+
+
 #endif