X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=isam%2Frootblk.h;h=44937d88bbe158505e3271d2eafb34afb7aaa69e;hp=2ae6b0ae571d7938b0c67244812e3d57fc0806f8;hb=ef696645cc3b7e0f4027008d1dc589c0f0f90c1f;hpb=3c5f6226f97612c0d6ac40591f600587c5ffa858 diff --git a/isam/rootblk.h b/isam/rootblk.h index 2ae6b0a..44937d8 100644 --- a/isam/rootblk.h +++ b/isam/rootblk.h @@ -4,7 +4,10 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: rootblk.h,v $ - * Revision 1.2 1999-02-02 14:51:25 adam + * 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 @@ -17,6 +20,10 @@ #include +#ifdef __cplusplus +extern "C" { +#endif + typedef struct is_type_header { int blocksize; /* for sanity-checking */ @@ -25,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