Brendan Shanks : include: Add d3dkmdt.h.

Alexandre Julliard julliard at winehq.org
Wed Jul 1 15:22:49 CDT 2020


Module: wine
Branch: master
Commit: 1899830b02218b89bb1669c265bd04d6750347fb
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=1899830b02218b89bb1669c265bd04d6750347fb

Author: Brendan Shanks <bshanks at codeweavers.com>
Date:   Mon Jun 29 21:55:19 2020 -0700

include: Add d3dkmdt.h.

Signed-off-by: Brendan Shanks <bshanks at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 include/Makefile.in |  1 +
 include/d3dkmdt.h   | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 60 insertions(+)

diff --git a/include/Makefile.in b/include/Makefile.in
index 90fb873f20..56c5220daf 100644
--- a/include/Makefile.in
+++ b/include/Makefile.in
@@ -119,6 +119,7 @@ SOURCES = \
 	d3dcommon.idl \
 	d3dcompiler.h \
 	d3dhal.h \
+	d3dkmdt.h \
 	d3drm.h \
 	d3drmdef.h \
 	d3drmobj.h \
diff --git a/include/d3dkmdt.h b/include/d3dkmdt.h
new file mode 100644
index 0000000000..f47688cf40
--- /dev/null
+++ b/include/d3dkmdt.h
@@ -0,0 +1,59 @@
+/*
+ * Copyright 2020 Brendan Shanks for CodeWeavers
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+#ifndef __WINE_D3DKMDT_H
+#define __WINE_D3DKMDT_H
+
+typedef enum _D3DKMDT_VIDEO_SIGNAL_STANDARD
+{
+    D3DKMDT_VSS_UNINITIALIZED =  0,
+    D3DKMDT_VSS_VESA_DMT      =  1,
+    D3DKMDT_VSS_VESA_GTF      =  2,
+    D3DKMDT_VSS_VESA_CVT      =  3,
+    D3DKMDT_VSS_IBM           =  4,
+    D3DKMDT_VSS_APPLE         =  5,
+    D3DKMDT_VSS_NTSC_M        =  6,
+    D3DKMDT_VSS_NTSC_J        =  7,
+    D3DKMDT_VSS_NTSC_443      =  8,
+    D3DKMDT_VSS_PAL_B         =  9,
+    D3DKMDT_VSS_PAL_B1        = 10,
+    D3DKMDT_VSS_PAL_G         = 11,
+    D3DKMDT_VSS_PAL_H         = 12,
+    D3DKMDT_VSS_PAL_I         = 13,
+    D3DKMDT_VSS_PAL_D         = 14,
+    D3DKMDT_VSS_PAL_N         = 15,
+    D3DKMDT_VSS_PAL_NC        = 16,
+    D3DKMDT_VSS_SECAM_B       = 17,
+    D3DKMDT_VSS_SECAM_D       = 18,
+    D3DKMDT_VSS_SECAM_G       = 19,
+    D3DKMDT_VSS_SECAM_H       = 20,
+    D3DKMDT_VSS_SECAM_K       = 21,
+    D3DKMDT_VSS_SECAM_K1      = 22,
+    D3DKMDT_VSS_SECAM_L       = 23,
+    D3DKMDT_VSS_SECAM_L1      = 24,
+    D3DKMDT_VSS_EIA_861       = 25,
+    D3DKMDT_VSS_EIA_861A      = 26,
+    D3DKMDT_VSS_EIA_861B      = 27,
+    D3DKMDT_VSS_PAL_K         = 28,
+    D3DKMDT_VSS_PAL_K1        = 29,
+    D3DKMDT_VSS_PAL_L         = 30,
+    D3DKMDT_VSS_PAL_M         = 31,
+    D3DKMDT_VSS_OTHER         = 255
+} D3DKMDT_VIDEO_SIGNAL_STANDARD;
+
+#endif /* __WINE_D3DKMDT_H */




More information about the wine-cvs mailing list