X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=isam%2Fphysical.h;h=7cd111fc85fcb05da4bc5b3ffc60daed787476b4;hb=49f1c8c877affdeb9e9221047c48beed3f475afb;hp=5e9cd547d6c458c8fb84e5b5f8da0bcc48405945;hpb=c6c40893444f2288cdea91d30dd92df0f285e67d;p=idzebra-moved-to-github.git diff --git a/isam/physical.h b/isam/physical.h index 5e9cd54..7cd111f 100644 --- a/isam/physical.h +++ b/isam/physical.h @@ -1,10 +1,23 @@ /* - * Copyright (C) 1994, Index Data I/S + * Copyright (C) 1994-1999, Index Data * All rights reserved. * Sebastian Hammer, Adam Dickmeiss * * $Log: physical.h,v $ - * Revision 1.1 1994-09-26 16:07:59 quinn + * Revision 1.5 1999-02-02 14:51:23 adam + * Updated WIN32 code specific sections. Changed header. + * + * 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 * Most of the functionality in place. * */ @@ -12,6 +25,12 @@ #ifndef PHYSICAL_H #define PHYSICAL_H +#include "memory.h" + +#ifdef __cplusplus +extern "C" { +#endif + void is_p_sync(is_mtable *tab); void is_p_unmap(is_mtable *tab); void is_p_align(is_mtable *tab); @@ -19,4 +38,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