7cd111fc85fcb05da4bc5b3ffc60daed787476b4
[idzebra-moved-to-github.git] / isam / physical.h
1 /*
2  * Copyright (C) 1994-1999, Index Data
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: physical.h,v $
7  * Revision 1.5  1999-02-02 14:51:23  adam
8  * Updated WIN32 code specific sections. Changed header.
9  *
10  * Revision 1.4  1997/09/05 15:30:10  adam
11  * Changed prototype for chr_map_input - added const.
12  * Added support for C++, headers uses extern "C" for public definitions.
13  *
14  * Revision 1.3  1994/09/26 17:11:32  quinn
15  * Trivial
16  *
17  * Revision 1.2  1994/09/26  17:06:37  quinn
18  * Back again...
19  *
20  * Revision 1.1  1994/09/26  16:07:59  quinn
21  * Most of the functionality in place.
22  *
23  */
24
25 #ifndef PHYSICAL_H
26 #define PHYSICAL_H
27
28 #include "memory.h"
29
30 #ifdef __cplusplus
31 extern "C" {
32 #endif
33
34 void is_p_sync(is_mtable *tab);
35 void is_p_unmap(is_mtable *tab);
36 void is_p_align(is_mtable *tab);
37 void is_p_remap(is_mtable *tab);
38 int is_p_read_partial(is_mtable *tab, is_mblock *block);
39 int is_p_read_full(is_mtable *tab, is_mblock *block);
40
41 #ifdef __cplusplus
42 }
43 #endif
44
45
46 #endif