Rebase against 717109ce79bbf92b5e3e93e49f96b78ece00a952

This commit is contained in:
Alistair Leslie-Hughes
2019-10-24 08:29:06 +11:00
parent e380c1e9a7
commit bc7627cdf1
3 changed files with 31 additions and 30 deletions

View File

@@ -1,4 +1,4 @@
From 27139df539e603ba9db27a49a37cba789b33a108 Mon Sep 17 00:00:00 2001
From a1a88335443f560d72375a6662eae7247f275490 Mon Sep 17 00:00:00 2001
From: Louis Lenders <xerox.xerox2000x@gmail.com>
Date: Thu, 7 Jun 2018 11:51:01 +0200
Subject: [PATCH] uianimation: Add stub dll
@@ -9,26 +9,28 @@ Split into multiple changes.
Signed-off-by: Louis Lenders <xerox.xerox2000x@gmail.com>
---
dlls/uianimation/Makefile.in | 5 +
dlls/uianimation/Makefile.in | 5 +-
dlls/uianimation/main.c | 897 ++++++++++++++++++++++-
dlls/uianimation/uianimation_typelib.idl | 23 +
3 files changed, 915 insertions(+), 10 deletions(-)
3 files changed, 914 insertions(+), 11 deletions(-)
create mode 100644 dlls/uianimation/uianimation_typelib.idl
diff --git a/dlls/uianimation/Makefile.in b/dlls/uianimation/Makefile.in
index 85bf1675db0..c0cab1d0fd4 100644
index 9abb0d6b599..886898070c9 100644
--- a/dlls/uianimation/Makefile.in
+++ b/dlls/uianimation/Makefile.in
@@ -1,6 +1,11 @@
@@ -1,4 +1,5 @@
MODULE = uianimation.dll
+IMPORTS = uuid ole32
EXTRADLLFLAGS = -mno-cygwin
C_SRCS = \
@@ -6,4 +7,6 @@ C_SRCS = \
main.c
+
+IDL_SRCS = \
IDL_SRCS = \
- uianimation_reg.idl
+ uianimation_reg.idl \
+ uianimation_typelib.idl
+
diff --git a/dlls/uianimation/main.c b/dlls/uianimation/main.c
@@ -961,7 +963,7 @@ index ea35a30f51d..c20cfde47df 100644
*/
diff --git a/dlls/uianimation/uianimation_typelib.idl b/dlls/uianimation/uianimation_typelib.idl
new file mode 100644
index 00000000000..9066c09a021
index 00000000000..4c0bc7fd462
--- /dev/null
+++ b/dlls/uianimation/uianimation_typelib.idl
@@ -0,0 +1,23 @@
@@ -985,7 +987,7 @@ index 00000000000..9066c09a021
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+#pragma makedep regtypelib
+#pragma makedep typelib
+
+#include "uianimation.idl"
--