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