mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2024-11-21 16:46:54 -08:00
87 lines
2.7 KiB
Diff
87 lines
2.7 KiB
Diff
From 905724311a9d542122f41ef1eb0b1b98ef0c6897 Mon Sep 17 00:00:00 2001
|
|
From: Austin English <austinenglish@gmail.com>
|
|
Date: Tue, 13 Oct 2020 04:42:23 -0500
|
|
Subject: [PATCH] qdv: add stub dll
|
|
|
|
Signed-off-by: Austin English <austinenglish@gmail.com>
|
|
---
|
|
configure.ac | 1 +
|
|
dlls/qdv/Makefile.in | 6 ++++++
|
|
dlls/qdv/qdv.spec | 4 ++++
|
|
dlls/qdv/version.rc | 26 ++++++++++++++++++++++++++
|
|
4 files changed, 37 insertions(+)
|
|
create mode 100644 dlls/qdv/Makefile.in
|
|
create mode 100644 dlls/qdv/qdv.spec
|
|
create mode 100644 dlls/qdv/version.rc
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index db94b38dcac..8e493b3e44b 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -3627,6 +3627,7 @@ WINE_CONFIG_MAKEFILE(dlls/qasf)
|
|
WINE_CONFIG_MAKEFILE(dlls/qasf/tests)
|
|
WINE_CONFIG_MAKEFILE(dlls/qcap)
|
|
WINE_CONFIG_MAKEFILE(dlls/qcap/tests)
|
|
+WINE_CONFIG_MAKEFILE(dlls/qdv)
|
|
WINE_CONFIG_MAKEFILE(dlls/qdvd)
|
|
WINE_CONFIG_MAKEFILE(dlls/qdvd/tests)
|
|
WINE_CONFIG_MAKEFILE(dlls/qedit)
|
|
diff --git a/dlls/qdv/Makefile.in b/dlls/qdv/Makefile.in
|
|
new file mode 100644
|
|
index 00000000000..487b9b8f881
|
|
--- /dev/null
|
|
+++ b/dlls/qdv/Makefile.in
|
|
@@ -0,0 +1,6 @@
|
|
+MODULE = qdv.dll
|
|
+
|
|
+EXTRADLLFLAGS = -Wb,--prefer-native
|
|
+
|
|
+
|
|
+RC_SRCS = version.rc
|
|
diff --git a/dlls/qdv/qdv.spec b/dlls/qdv/qdv.spec
|
|
new file mode 100644
|
|
index 00000000000..a043605127d
|
|
--- /dev/null
|
|
+++ b/dlls/qdv/qdv.spec
|
|
@@ -0,0 +1,4 @@
|
|
+@ stub DllCanUnloadNow
|
|
+@ stub DllGetClassObject
|
|
+@ stub DllRegisterServer
|
|
+@ stub DllUnregisterServer
|
|
\ No newline at end of file
|
|
diff --git a/dlls/qdv/version.rc b/dlls/qdv/version.rc
|
|
new file mode 100644
|
|
index 00000000000..6cf198362a8
|
|
--- /dev/null
|
|
+++ b/dlls/qdv/version.rc
|
|
@@ -0,0 +1,26 @@
|
|
+/*
|
|
+ * Copyright 2020 Austin English
|
|
+ *
|
|
+ * 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
|
|
+ */
|
|
+
|
|
+#define WINE_FILEDESCRIPTION_STR "Wine qdv"
|
|
+#define WINE_FILENAME_STR "qdv.dll"
|
|
+#define WINE_FILEVERSION 5,3,2600,5512
|
|
+#define WINE_FILEVERSION_STR "5.3.2600.5512"
|
|
+#define WINE_PRODUCTVERSION 5,3,2600,5512
|
|
+#define WINE_PRODUCTVERSION_STR "5.3.2600.5512"
|
|
+
|
|
+#include "wine/wine_common_ver.rc"
|
|
--
|
|
2.20.1
|
|
|