1 #ifndef _ADF_SALV_H
2 #define _ADF_SALV_H 1
3 
4 /*
5  *  ADF Library. (C) 1997-2002 Laurent Clevy
6  *
7  *  adf_salv.h
8  *
9  *  $Id$
10  *
11  *  This file is part of ADFLib.
12  *
13  *  ADFLib is free software; you can redistribute it and/or modify
14  *  it under the terms of the GNU General Public License as published by
15  *  the Free Software Foundation; either version 2 of the License, or
16  *  (at your option) any later version.
17  *
18  *  ADFLib is distributed in the hope that it will be useful,
19  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
20  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  *  GNU General Public License for more details.
22  *
23  *  You should have received a copy of the GNU General Public License
24  *  along with Foobar; if not, write to the Free Software
25  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
26  *
27  */
28 
29 #include"prefix.h"
30 
31 #include "adf_str.h"
32 
33 RETCODE adfReadGenBlock(struct Volume *vol, SECTNUM nSect, struct GenBlock *block);
34 PREFIX RETCODE adfCheckEntry(struct Volume* vol, SECTNUM nSect, int level);
35 PREFIX RETCODE adfUndelEntry(struct Volume* vol, SECTNUM parent, SECTNUM nSect);
36 PREFIX struct List* adfGetDelEnt(struct Volume *vol);
37 PREFIX void adfFreeDelList(struct List* list);
38 
39 
40 /*##########################################################################*/
41 #endif /* _ADF_SALV_H */
42 
43