annotate Gui/bitmap.h @ 1733:220f86ac8c15
examples and started cleanup of rules by andre.dahlqvist@telia.com
author |
eyck |
date |
Tue, 28 Aug 2001 19:34:32 +0000 |
parents |
d237c5d4b216 |
children |
dee4b2ea5e5b |
rev |
line source |
1693
|
1
|
|
2 #ifndef __MYSAMPLE
|
|
3 #define __MYSAMPLE
|
|
4
|
|
5 typedef struct _txSample
|
|
6 {
|
|
7 unsigned int Width;
|
|
8 unsigned int Height;
|
|
9 unsigned int BPP;
|
|
10 unsigned long ImageSize;
|
|
11 char * Image;
|
|
12 } txSample;
|
|
13
|
|
14 #include "tga/tga.h"
|
|
15 #include "bmp/bmp.h"
|
|
16 #include "png/png.h"
|
|
17
|
|
18 extern int bpRead( char * fname, txSample * bf );
|
|
19 extern int conv24to32( txSample * bf );
|
|
20
|
|
21 #endif |