(Temporarily) set "animate" to "none" by default (broken feature).
[gf1.git] / setup_win.h
blob3a440b1ae8c2903c5298672f3255da36661c5275
1 /*
2 ** $Id$
3 **
4 ** contains everything concerning the setupwindow
5 ** also includes reading and writing from the configuration-file
6 */
7 /*
8 ** Copyright (C) 1998 Kurt Van den Branden
9 **
10 ** This program is free software; you can redistribute it and/or modify
11 ** it under the terms of the GNU General Public License as published by
12 ** the Free Software Foundation; either version 2 of the License, or
13 ** (at your option) any later version.
14 **
15 ** This program is distributed in the hope that it will be useful,
16 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ** GNU General Public License for more details.
19 **
20 ** You should have received a copy of the GNU General Public License
21 ** along with this program; if not, write to the Free Software
22 ** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 #ifndef _SETUP_WIN_H_
26 #define _SETUP_WIN_H_ 1
28 #include "linklist.h"
30 typedef struct {
31 listheader * configlist;
32 int searchdepth;
33 int animate;
34 int waitcomputer;
35 int waitremove;
36 int showposname;
37 } configvalues;
39 int show_setup (configvalues * config);
40 void retrieveconfig (configvalues * config);
41 void writeconfig (configvalues * config);
43 #endif