1 // Emacs style mode select   -*- C++ -*-
2 //-----------------------------------------------------------------------------
3 //
4 // $Id: p_chex.h 1368 2017-11-01 01:17:48Z wesleyjohnson $
5 //
6 // Copyright (C) 2003-2010 by DooM Legacy Team.
7 //
8 // This program is free software; you can redistribute it and/or
9 // modify it under the terms of the GNU General Public License
10 // as published by the Free Software Foundation; either version 2
11 // of the License, or (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17 //
18 // DESCRIPTION:
19 //   Chex Quest support.
20 //
21 //-----------------------------------------------------------------------------
22 
23 #ifndef P_CHEX_H
24 #define P_CHEX_H
25 
26 void Chex1_PatchEngine(void);
27 
28 // Detect Doom graphics and prevent their display while chexquest mode.
29 void* Chex_safe_pictures( const char* name, void* lumpptr );
30 
31 #endif
32