Module: wine
Branch: master
Commit: c7616efb98469590badc68cd33a8b94f9a04ae39
URL: https://source.winehq.org/git/wine.git/?a=commit;h=c7616efb98469590badc68cd…
Author: Józef Kucia <jkucia(a)codeweavers.com>
Date: Mon Dec 3 19:52:44 2018 +0100
include: Add ntddvdeo.h.
Signed-off-by: Józef Kucia <jkucia(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
include/Makefile.in | 1 +
include/ntddvdeo.h | 24 ++++++++++++++++++++++++
2 files changed, 25 insertions(+)
diff --git a/include/Makefile.in b/include/Makefile.in
index 2953748..fd47078 100644
--- a/include/Makefile.in
+++ b/include/Makefile.in
@@ -472,6 +472,7 @@ SOURCES = \
ntddndis.h \
ntddscsi.h \
ntddstor.h \
+ ntddvdeo.h \
ntdef.h \
ntdsapi.h \
ntlsa.h \
diff --git a/include/ntddvdeo.h b/include/ntddvdeo.h
new file mode 100644
index 0000000..d2c0780
--- /dev/null
+++ b/include/ntddvdeo.h
@@ -0,0 +1,24 @@
+/*
+ * Copyright 2018 Józef Kucia 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 _NTDDVDEO_
+#define _NTDDVDEO_
+
+DEFINE_GUID(GUID_DEVINTERFACE_DISPLAY_ADAPTER, 0x5b45201d, 0xf2f2, 0x4f3b, 0x85, 0xbb, 0x30, 0xff, 0x1f, 0x95, 0x35, 0x99);
+
+#endif
Module: wine
Branch: master
Commit: 8ba075a0592e776b3f4502fce09af207651e8c47
URL: https://source.winehq.org/git/wine.git/?a=commit;h=8ba075a0592e776b3f4502fc…
Author: Henri Verbeet <hverbeet(a)codeweavers.com>
Date: Tue Dec 4 18:10:00 2018 +0330
dxgi: Introduce the IWineDXGISwapChainFactory interface.
The basic idea is that a project like vkd3d could provide its own
implementation of the IWineDXGISwapChainFactory interface, and so wouldn't
need specific handling in dxgi_factory_CreateSwapChainForHwnd().
Signed-off-by: Henri Verbeet <hverbeet(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
dlls/dxgi/device.c | 118 ++++++++++++++++++++++++++++++++++++++++++++++
dlls/dxgi/dxgi_private.h | 3 +-
dlls/dxgi/factory.c | 9 ++--
dlls/dxgi/swapchain.c | 63 -------------------------
include/wine/winedxgi.idl | 17 +++++++
5 files changed, 141 insertions(+), 69 deletions(-)
Diff: https://source.winehq.org/git/wine.git/?a=commitdiff;h=8ba075a0592e776b3f45…