X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=isam%2Fphysical.h;h=56caf4daf573500cb666908af825617dfd44c4a9;hb=5b886a7358c16434d5c9f5f0d4af2f6e2e5d5c73;hp=a31fdd03ee4d329163c6bcb75b1c2d0c1cc1c545;hpb=8fa8b7c5d10dd87654e5c219cceebe1a9664544a;p=idzebra-moved-to-github.git diff --git a/isam/physical.h b/isam/physical.h index a31fdd0..56caf4d 100644 --- a/isam/physical.h +++ b/isam/physical.h @@ -4,7 +4,14 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: physical.h,v $ - * Revision 1.2 1994-09-26 17:06:37 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 * Back again... * * Revision 1.1 1994/09/26 16:07:59 quinn @@ -15,7 +22,11 @@ #ifndef PHYSICAL_H #define PHYSICAL_H -#include +#include "memory.h" + +#ifdef __cplusplus +extern "C" { +#endif void is_p_sync(is_mtable *tab); void is_p_unmap(is_mtable *tab); @@ -24,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