OSDN Git Service

350bbe060884ede81ab226e2984e96f367047808
[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         BYTE   TileWidth;
19         BYTE   TileHeight;
20         INT    OffsetX;
21         INT    OffsetY;
22 } DIBINIT;
23
24 /* Read a DIB from a file */
25 BOOL ReadDIB(HWND, LPSTR, DIBINIT *);