1 #ifndef ADF_ENV_H
2 #define ADF_ENV_H 1
3 
4 /*
5  *  ADF Library. (C) 1997-2002 Laurent Clevy
6  *
7  *  adf_env.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 PREFIX void adfEnvInitDefault();
32 PREFIX void adfSetEnvFct( void(*e)(char*), void(*w)(char*), void(*v)(char*),
33 	void(*n)(SECTNUM,int) );
34 PREFIX void adfEnvCleanUp();
35 PREFIX void adfChgEnvProp(int prop, void *new);
36 PREFIX char* adfGetVersionNumber();
37 PREFIX char* adfGetVersionDate();
38 
39 #endif /* ADF_ENV_H */
40 /*##########################################################################*/
41