diff options
author | Jaroslav Hensl <jara@hensl.cz> | 2024-11-20 00:08:47 +0100 |
---|---|---|
committer | Jaroslav Hensl <jara@hensl.cz> | 2024-11-20 00:08:47 +0100 |
commit | 12ce43bf38e0c92c6565a4d3f91d2c9a7b230f04 (patch) | |
tree | 65dc73453514388c3297ac380b8fb4083390e5f5 /ddk | |
parent | 1cc70b8dbcd13a23a8db7cc416e466ee37d263d5 (diff) | |
download | vmdisp9x-12ce43bf38e0c92c6565a4d3f91d2c9a7b230f04.tar.gz |
DDI support, RC fix on mouse, fixed README
Diffstat (limited to 'ddk')
-rw-r--r-- | ddk/ddrawi.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ddk/ddrawi.h b/ddk/ddrawi.h index b80091d..33c89d4 100644 --- a/ddk/ddrawi.h +++ b/ddk/ddrawi.h @@ -2126,4 +2126,17 @@ DWORD DDHinstance(void); /* DCI-Defined error codes */
#define DCI_OK 0 /* success */
+
+
+/*
+ * DIRECTDRAW BITDEPTH CONSTANTS
+ */
+#define DDBD_1 0x00004000l
+#define DDBD_2 0x00002000l
+#define DDBD_4 0x00001000l
+#define DDBD_8 0x00000800l
+#define DDBD_16 0x00000400l
+#define DDBD_24 0X00000200l
+#define DDBD_32 0x00000100l
+
#endif /* __DDRAWI_H__INCLUDED__ */
|