Networking - Reworked route table management
[tpg/acess2.git] / Usermode / include / 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