Same fix as r45172 for classes/iconimage:
[AROS-Contrib.git] / Games / Doom / m_misc.h
blob7c80a72d290994e3288b2373ac84f53cccc79e3d
1 // Emacs style mode select -*- C++ -*-
2 //-----------------------------------------------------------------------------
3 //
4 // $Id$
5 //
6 // Copyright (C) 1993-1996 by id Software, Inc.
7 //
8 // This source is available for distribution and/or modification
9 // only under the terms of the DOOM Source Code License as
10 // published by id Software. All rights reserved.
12 // The source is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // FITNESS FOR A PARTICULAR PURPOSE. See the DOOM Source Code License
15 // for more details.
17 // DESCRIPTION:
19 //
20 //-----------------------------------------------------------------------------
23 #ifndef __M_MISC__
24 #define __M_MISC__
27 #include "doomtype.h"
29 // MISC
34 boolean
35 M_WriteFile
36 ( char const* name,
37 void* source,
38 int length );
40 int
41 M_ReadFile
42 ( char const* name,
43 byte** buffer );
45 void M_ScreenShot (void);
47 void M_LoadDefaults (void);
49 void M_SaveDefaults (void);
52 int
53 M_DrawText
54 ( int x,
55 int y,
56 boolean direct,
57 char* string );
60 #endif
61 //-----------------------------------------------------------------------------
63 // $Log$
64 // Revision 1.1 2000/02/29 18:21:06 stegerg
65 // Doom port based on ADoomPPC. Read README.AROS!
68 //-----------------------------------------------------------------------------