summaryrefslogtreecommitdiffstats
path: root/Gui/bitmap/bitmap.h
blob: 9a6d5ebf189e9d72ed7206952a91b66f07666805 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

#ifndef __MYSAMPLE
#define __MYSAMPLE

typedef struct _txSample
{
 unsigned int  Width;
 unsigned int  Height;
 unsigned int  BPP;
 unsigned long ImageSize;
 char *        Image;
} txSample;

#include "tga/tga.h"
#include "bmp/bmp.h"
#include "png/png.h"

extern int bpRead( char * fname, txSample * bf );
extern int conv24to32( txSample * bf );

#endif