root/trunk/src/win/readdib.h

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 /* File: readdib.h */
2
3 #ifndef INCLUDED_READDIB_H
4 #define INCLUDED_READDIB_H
5
6 /*
7  * This file has been modified for use with "Angband 2.8.2"
8  *
9  * Copyright 1991 Microsoft Corporation. All rights reserved.
10  */
11
12 /*
13  * Information about a bitmap
14  */
15 typedef struct {
16         HANDLE   hDIB;
17         HBITMAP  hBitmap;
18         HPALETTE hPalette;
19         BYTE     CellWidth;
20         BYTE     CellHeight;
21 } DIBINIT;
22
23 /* Read a DIB from a file */
24 extern BOOL ReadDIB(HWND, LPSTR, DIBINIT *);
25
26 /* Free a DIB */
27 extern void FreeDIB(DIBINIT *dib);
28
29 #endif /* !INCLUDED_READDIB_H */
Note: See TracBrowser for help on using the browser.