OSDN Git Service

Add Doxygen comments to readdib.h.
[hengband/hengband.git] / src / readdib.h
1 /*!
2  * @file readdib.h
3  * @brief ビットマップファイル読み取り処理のヘッダファイル
4  * This package provides a routine to read a DIB file and set up the device dependent version of the image.
5  * @date 2014/08/08
6  * @author
7  * Copyright 1991 Microsoft Corporation. All rights reserved.
8  * @details
9  * This file has been modified for use with "Angband 2.8.2"
10  */
11
12 /*!
13  * @struct ビットマップファイル情報構造体 / Information about a bitmap
14  */
15 typedef struct {
16         HANDLE hDIB;
17         HANDLE hBitmap;
18         HANDLE hPalette;
19         BYTE   CellWidth;
20         BYTE   CellHeight;
21         BYTE   TileWidth;
22         BYTE   TileHeight;
23         INT    OffsetX;
24         INT    OffsetY;
25 } DIBINIT;
26
27 /* Read a DIB from a file */
28 BOOL ReadDIB(HWND, LPSTR, DIBINIT *);