1 /*
2   progressbar.h
3 
4   For Tux Paint
5   Progress bar functions
6 
7   Copyright (c) 2002-2006 by Bill Kendrick and others
8   bill@newbreedsoftware.com
9   http://www.newbreedsoftware.com/tuxpaint/
10 
11   This program is free software; you can redistribute it and/or modify
12   it under the terms of the GNU General Public License as published by
13   the Free Software Foundation; either version 2 of the License, or
14   (at your option) any later version.
15 
16   This program is distributed in the hope that it will be useful,
17   but WITHOUT ANY WARRANTY; without even the implied warranty of
18   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19   GNU General Public License for more details.
20 
21   You should have received a copy of the GNU General Public License
22   along with this program; if not, write to the Free Software
23   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
24   (See COPYING.txt)
25 
26   June 14, 2002 - February 17, 2006
27   $Id$
28 */
29 
30 
31 #ifndef PROGRESSBAR_H
32 #define PROGRESSBAR_H
33 
34 #include "SDL.h"
35 
36 extern SDL_Surface *img_progress;
37 extern int progress_bar_disabled, prog_bar_ctr;
38 
39 void show_progress_bar(SDL_Surface * screen);
40 
41 #endif
42