]> www.wagner.pp.ru Git - oss/fgis.git/blob - lib/epp_private.h
First checked in version
[oss/fgis.git] / lib / epp_private.h
1 #ifndef EPP_PRIVATE_H
2 #define EPP_PRIVATE_H
3 /* decladed in epp_input.c */
4 void position_input(EPP* epp,int row);
5 void unpack_row(unsigned char *row,int *bufpos,EPP *epp);
6 int unpack_buffer(EPP *epp);
7
8 /* declared in epp_output.c */
9 void position_output(EPP* epp,int row);
10 void update_header(EPP *epp);/* writes changes into header */
11 int pack_buffer(EPP *epp);
12
13 /* declared in epp_cached.c */
14 extern void free_cache(EPP *epp);
15 int search_cache(EPP *epp,int row);
16 void position_cached(EPP* epp,int row);
17
18 /* declared in epp_loaded.c */
19 void position_loaded(EPP *epp,int row);
20 #endif