1 /* Copyright (C) 2002 W.P. van Paassen - peter@paassen.tmfweb.nl,
2                       Ed Sinjiashvili  - slimb@swes.saren.ru
3 		      dekoder          - dekoder81@users.sourceforge.net
4    Copyright (C) 2004 flobo for this hacked version
5 
6    This program is free software; you can redistribute it and/or modify it under
7    the terms of the GNU General Public License as published by the Free
8    Software Foundation; either version 2 of the License, or (at your
9    option) any later version.
10 
11    This program is distributed in the hope that it will be useful, but WITHOUT
12    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13    FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14    for more details.
15 
16    You should have received a copy of the GNU General Public License
17    along with this program; see the file COPYING.  If not, write to the Free
18    Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
19 
20 #ifndef _PUYODOOMMELT
21 #define _PUYODOOMMELT
22 
23 #include "glSDL.h"
24 #include "IosImgProcess.h"
25 
26 typedef struct _DoomMelt DoomMelt;
27 
28 DoomMelt *doom_melt_new    (void);
29 void      doom_melt_delete (DoomMelt *_this);
30 void      doom_melt_update (DoomMelt *_this);
31 void      doom_melt_start  (DoomMelt *_this, IIM_Surface *surf);
32 void      doom_melt_display(DoomMelt *_this, SDL_Surface *display);
33 
34 #endif /*_PUYODOOMMELT*/
35 
36