1 //
2 // Copyright(C) 1993-1996 Id Software, Inc.
3 // Copyright(C) 2005-2014 Simon Howard
4 //
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License
7 // as published by the Free Software Foundation; either version 2
8 // of the License, or (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 // GNU General Public License for more details.
14 //
15 // DESCRIPTION:
16 //	Disk load indicator.
17 //
18 
19 #ifndef __V_DISKICON__
20 #define __V_DISKICON__
21 
22 // Dimensions of the flashing "loading" disk icon
23 
24 #define LOADING_DISK_W 16
25 #define LOADING_DISK_H 16
26 
27 extern void V_EnableLoadingDisk(char *lump_name, int xoffs, int yoffs);
28 extern void V_BeginRead(size_t nbytes);
29 extern void V_DrawDiskIcon(void);
30 extern void V_RestoreDiskBackground(void);
31 
32 #endif
33