repo.or.cz
/
rofl0r-agsutils.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
agssim: don't accept wrong input when register name expected
[rofl0r-agsutils.git]
/
ImageData.h
blob
3f1762dd65937b58a2d5d037708707a98a77e22b
1
#ifndef IMAGEDATA_H
2
#define IMAGEDATA_H
3
4
typedef
struct
ImageData
{
5
short
width
;
6
short
height
;
7
short
bytesperpixel
;
8
unsigned
data_size
;
9
unsigned char
*
data
;
10
}
ImageData
;
11
12
#endif
13