X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=isam%2Frootblk.h;h=44937d88bbe158505e3271d2eafb34afb7aaa69e;hb=49f1c8c877affdeb9e9221047c48beed3f475afb;hp=a7499cb43e7b42959ca5eff9170d1f0f08e28361;hpb=c6c40893444f2288cdea91d30dd92df0f285e67d;p=idzebra-moved-to-github.git diff --git a/isam/rootblk.h b/isam/rootblk.h index a7499cb..44937d8 100644 --- a/isam/rootblk.h +++ b/isam/rootblk.h @@ -1,10 +1,16 @@ /* - * Copyright (C) 1994, Index Data I/S + * Copyright (C) 1994-1999, Index Data * All rights reserved. * Sebastian Hammer, Adam Dickmeiss * * $Log: rootblk.h,v $ - * Revision 1.1 1994-09-26 16:08:00 quinn + * Revision 1.3 1999-05-26 07:49:14 adam + * C++ compilation. + * + * Revision 1.2 1999/02/02 14:51:25 adam + * Updated WIN32 code specific sections. Changed header. + * + * Revision 1.1 1994/09/26 16:08:00 quinn * Most of the functionality in place. * */ @@ -14,6 +20,10 @@ #include +#ifdef __cplusplus +extern "C" { +#endif + typedef struct is_type_header { int blocksize; /* for sanity-checking */ @@ -22,9 +32,11 @@ typedef struct is_type_header int top; /* first unused block */ } is_type_header; - - int is_rb_write(isam_blocktype *ib, is_type_header *hd); int is_rb_read(isam_blocktype *ib, is_type_header *hd); +#ifdef __cplusplus +} +#endif + #endif