XenevaOS
Loading...
Searching...
No Matches
bmp.h
Go to the documentation of this file.
1
33#pragma pack(push,1)
34typedef struct _bmp_ {
35 unsigned short type;
36 unsigned int size;
37 unsigned short resv1;
38 unsigned short resv2;
39 unsigned int off_bits;
41
42typedef struct _info_ {
43 unsigned int biSize;
44 long biWidth;
46 unsigned short biPlanes;
47 unsigned short biBitCount;
48 unsigned int biCompression;
49 unsigned int biSizeImage;
52 unsigned int biClrUsed;
53 unsigned int biClrImportant;
55#pragma pack(pop)
struct _bmp_ BMP
struct _info_ BMPInfo
Definition bmp.h:34
unsigned short type
Definition bmp.h:35
unsigned int size
Definition bmp.h:36
unsigned short resv1
Definition bmp.h:37
unsigned int off_bits
Definition bmp.h:39
unsigned short resv2
Definition bmp.h:38
Definition bmp.h:42
unsigned int biClrUsed
Definition bmp.h:52
unsigned int biClrImportant
Definition bmp.h:53
long biWidth
Definition bmp.h:44
unsigned short biPlanes
Definition bmp.h:46
unsigned int biCompression
Definition bmp.h:48
unsigned int biSize
Definition bmp.h:43
unsigned short biBitCount
Definition bmp.h:47
unsigned int biSizeImage
Definition bmp.h:49
long biYPelsPerMeter
Definition bmp.h:51
long biHeight
Definition bmp.h:45
long biXPelsPerMeter
Definition bmp.h:50