OSDN Git Service

Modify torch_lost_fuel bug. No more create minus charge torches.
[hengband/hengband.git] / src / readdib.h
1 /* File: readdib.h */
2
3 /*
4  * This file has been modified for use with "Angband 2.8.2"
5  *
6  * Copyright 1991 Microsoft Corporation. All rights reserved.
7  */
8
9 /*
10  * Information about a bitmap
11  */
12 typedef struct {
13         HANDLE hDIB;
14         HANDLE hBitmap;
15         HANDLE hPalette;
16         BYTE   CellWidth;
17         BYTE   CellHeight;
18 } DIBINIT;
19
20 /* Read a DIB from a file */
21 BOOL ReadDIB(HWND, LPSTR, DIBINIT *);