repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Tabs to spaces, more consistent formatting.
[AROS.git]
/
workbench
/
libs
/
asl
/
coolimages.h
blob
878b2b2d38cead0cb927b6f302547a51f56a8db6
1
/*
2
Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3
$Id$
4
*/
5
6
#ifndef EXEC_TYPES_H
7
# include <exec/types.h>
8
#endif
9
10
#define DEF_COOLIMAGEHEIGHT 16
11
12
struct
CoolImage
13
{
14
const
UBYTE
*
data
;
15
const
UBYTE
*
pal
;
16
WORD width
;
17
WORD height
;
18
WORD depth
;
19
};
20
21
extern
const struct
CoolImage cool_saveimage
,
22
cool_loadimage
,
23
cool_useimage
,
24
cool_cancelimage
,
25
cool_dotimage
,
26
cool_dotimage2
,
27
cool_warnimage
,
28
cool_diskimage
,
29
cool_switchimage
,
30
cool_monitorimage
,
31
cool_infoimage
,
32
cool_askimage
,
33
cool_keyimage
;