Added remote record import using Z39.50 extended services and Segment
[idzebra-moved-to-github.git] / bfile / cfile.h
index 68ee552..ef0a692 100644 (file)
@@ -3,12 +3,16 @@
  * All rights reserved.
  * Sebastian Hammer, Adam Dickmeiss
  *
- * $Id: cfile.h,v 1.11 1999-05-12 13:08:06 adam Exp $
+ * $Id: cfile.h,v 1.13 2000-03-20 19:08:35 adam Exp $
  */
 
 #ifndef CFILE_H
 #define CFILE_H
 
+#include <yaz/yconfig.h>
+
+YAZ_BEGIN_CDECL
+
 #define HASH_BUCKET 15
 
 struct CFile_ph_bucket {     /* structure on disc */
@@ -52,6 +56,7 @@ typedef struct CFile_struct
     MFile rmf;
     int  no_hits;
     int  no_miss;
+    Zebra_mutex mutex;
 } *CFile;
 
 int cf_close (CFile cf);
@@ -62,4 +67,6 @@ int cf_write (CFile cf, int no, int offset, int nbytes, const void *buf);
 void cf_unlink (CFile cf);
 void cf_commit (CFile cf);
 
+YAZ_END_CDECL
+
 #endif