|
Revision 918, 0.5 kB
(checked in by takkaria, 6 months ago)
|
Use consistent newlines everywhere, and also set the svn:eol-style property to native on all text files.
|
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
#ifndef INCLUDED_READDIB_H |
|---|
| 4 |
#define INCLUDED_READDIB_H |
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
typedef struct { |
|---|
| 16 |
HANDLE hDIB; |
|---|
| 17 |
HBITMAP hBitmap; |
|---|
| 18 |
HPALETTE hPalette; |
|---|
| 19 |
BYTE CellWidth; |
|---|
| 20 |
BYTE CellHeight; |
|---|
| 21 |
} DIBINIT; |
|---|
| 22 |
|
|---|
| 23 |
|
|---|
| 24 |
extern BOOL ReadDIB(HWND, LPSTR, DIBINIT *); |
|---|
| 25 |
|
|---|
| 26 |
|
|---|
| 27 |
extern void FreeDIB(DIBINIT *dib); |
|---|
| 28 |
|
|---|
| 29 |
#endif |
|---|