X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=isam%2Fmemory.h;h=91ae95ba2fe264c7f22da2f7312e498349311640;hb=c0c85097014e5b007075ab71d9b5bee412e28dd5;hp=e1bd1f0911994985205b30f36eb5e57e1ad76114;hpb=de4ada45ce039553f8322e620cc047d8cf4a065e;p=idzebra-moved-to-github.git diff --git a/isam/memory.h b/isam/memory.h index e1bd1f0..91ae95b 100644 --- a/isam/memory.h +++ b/isam/memory.h @@ -4,7 +4,11 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: memory.h,v $ - * Revision 1.5 1996-03-11 14:52:25 quinn + * Revision 1.6 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.5 1996/03/11 14:52:25 quinn * Fixed update bug. Repeated insertion in the same area sometimes caused * problems. * @@ -28,6 +32,10 @@ #ifndef MEMORY_H #define MEMORY_H +#ifdef __cplusplus +extern "C" { +#endif + extern int is_mbuf_size[3]; typedef unsigned int ISAM_P; @@ -105,4 +113,9 @@ int is_m_peek_record(is_mtable *tab, void *rec); int is_m_read_full(is_mtable *tab, is_mblock *mblock); int is_m_num_records(is_mtable *tab); +#ifdef __cplusplus +} +#endif + + #endif