summaryrefslogtreecommitdiff
path: root/src/readdib.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/readdib.h')
-rw-r--r--src/readdib.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/readdib.h b/src/readdib.h
new file mode 100644
index 00000000..c6402b50
--- /dev/null
+++ b/src/readdib.h
@@ -0,0 +1,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 *);