[go: up one dir, main page]

File: readdib.h

package info (click to toggle)
tome 2.3.4-1
  • links: PTS
  • area: non-free
  • in suites: etch, etch-m68k
  • size: 19,364 kB
  • ctags: 13,851
  • sloc: ansic: 174,479; sh: 240; makefile: 11
file content (21 lines) | stat: -rw-r--r-- 377 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* File: readdib.h */

/*
 * This file has been modified for use with "Angband 2.8.2"
 *
 * Copyright 1991 Microsoft Corporation. All rights reserved.
 */

/*
 * Information about a bitmap
 */
typedef struct {
	HANDLE hDIB;
	HANDLE hBitmap;
	HANDLE hPalette;
	BYTE   CellWidth;
	BYTE   CellHeight;
} DIBINIT;

/* Read a DIB from a file */
BOOL ReadDIB(HWND, LPSTR, DIBINIT *);