git.ucc.asn.au
/
tpg
/
acess2.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Usermode/libposix - Fixed bug in getpass (didn't trim \n)
[tpg/acess2.git]
/
Usermode
/
Libraries
/
libimage.so_src
/
include_exp
/
image.h
1
/*
2
*/
3
#ifndef _IMAGE_H_
4
#define _IMAGE_H_
5
6
// === TYPES ===
7
typedef struct sImage tImage;
8
struct sImage
9
{
10
short Width;
11
short Height;
12
int Format;
13
uint8_t Data[];
14
};
15
16
// === CONSTANTS ===
17
enum eImageFormats
18
{
19
IMGFMT_BGRA,
20
IMGFMT_RGB,
21
NUM_IMGFMTS
22
};
23
24
#endif
UCC
git Repository :: git.ucc.asn.au