You've already forked wine-staging
mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2025-04-13 14:42:51 -07:00
Rebase against 975d0632a19efd41338cb73a97f1b0bdbe7bc0cc.
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
From 907420bdc128c5e0ac6ab91996baa1a70a7b50a0 Mon Sep 17 00:00:00 2001
|
||||
From d8c34665cf3869d553ef19d7556f5ce3ccf5c786 Mon Sep 17 00:00:00 2001
|
||||
From: Nikolay Sivov <nsivov@codeweavers.com>
|
||||
Date: Wed, 30 Jan 2019 12:25:41 +0300
|
||||
Subject: [PATCH] imm32: Automatically initialize COM on window activation.
|
||||
@ -15,7 +15,7 @@ Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
|
||||
7 files changed, 386 insertions(+), 3 deletions(-)
|
||||
|
||||
diff --git a/dlls/imm32/Makefile.in b/dlls/imm32/Makefile.in
|
||||
index cebcf4ca30f..2ad39baf972 100644
|
||||
index b190888659b..ad10fc2fa45 100644
|
||||
--- a/dlls/imm32/Makefile.in
|
||||
+++ b/dlls/imm32/Makefile.in
|
||||
@@ -1,6 +1,6 @@
|
||||
@ -24,10 +24,10 @@ index cebcf4ca30f..2ad39baf972 100644
|
||||
-IMPORTS = user32 gdi32 advapi32
|
||||
+IMPORTS = user32 gdi32 advapi32 ole32
|
||||
|
||||
EXTRADLLFLAGS = -mno-cygwin
|
||||
|
||||
C_SRCS = \
|
||||
imm.c
|
||||
diff --git a/dlls/imm32/imm.c b/dlls/imm32/imm.c
|
||||
index 9d2a09f22be..2625549712e 100644
|
||||
index 20633041871..432dd224882 100644
|
||||
--- a/dlls/imm32/imm.c
|
||||
+++ b/dlls/imm32/imm.c
|
||||
@@ -19,6 +19,8 @@
|
||||
@ -556,10 +556,10 @@ index e12a1af5571..d37bc819447 100644
|
||||
FIXME("native imm32.dll not supported\n");
|
||||
return TRUE;
|
||||
diff --git a/dlls/user32/user_private.h b/dlls/user32/user_private.h
|
||||
index c460b1571c8..e5af441e33b 100644
|
||||
index beece021a9f..5bc4a429b8d 100644
|
||||
--- a/dlls/user32/user_private.h
|
||||
+++ b/dlls/user32/user_private.h
|
||||
@@ -210,6 +210,7 @@ C_ASSERT( sizeof(struct user_thread_info) <= sizeof(((TEB *)0)->Win32ClientInfo)
|
||||
@@ -209,6 +209,7 @@ C_ASSERT( sizeof(struct user_thread_info) <= sizeof(((TEB *)0)->Win32ClientInfo)
|
||||
extern INT global_key_state_counter DECLSPEC_HIDDEN;
|
||||
extern BOOL (WINAPI *imm_register_window)(HWND) DECLSPEC_HIDDEN;
|
||||
extern void (WINAPI *imm_unregister_window)(HWND) DECLSPEC_HIDDEN;
|
||||
@ -568,5 +568,5 @@ index c460b1571c8..e5af441e33b 100644
|
||||
struct user_key_state_info
|
||||
{
|
||||
--
|
||||
2.29.2
|
||||
2.33.0
|
||||
|
||||
|
Reference in New Issue
Block a user