Module: wine
Branch: master
Commit: 3898ad408bb7ad50555ce6bce0fc02ab60eb5caf
URL: https://source.winehq.org/git/wine.git/?a=commit;h=3898ad408bb7ad50555ce6bc…
Author: Zhiyi Zhang <zzhang(a)codeweavers.com>
Date: Wed Feb 10 14:33:27 2021 +0800
user32: Send a WM_ACTIVATE message after restoring a minimized top level window.
The WmShowRestoreMinimizedOverlappedSeq message sequence in tests
clearly show that there is a WM_ACTIVATE message at the end of
ShowWindow() calls after restoring a minimized window, and it's
not from SetFocus().
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=47507
Signed-off-by: Zhiyi Zhang <zzhang(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
dlls/user32/tests/msg.c | 247 +++++++++++++++++++++++++++++++++++++++++++++++-
dlls/user32/winpos.c | 8 +-
2 files changed, 253 insertions(+), 2 deletions(-)
Diff: https://source.winehq.org/git/wine.git/?a=commitdiff;h=3898ad408bb7ad50555c…
Module: wine
Branch: master
Commit: 55b2213acecced1ae7684cb34bb51c897e01d174
URL: https://source.winehq.org/git/wine.git/?a=commit;h=55b2213acecced1ae7684cb3…
Author: Vijay Kiran Kamuju <infyquest(a)gmail.com>
Date: Sat Feb 6 10:14:46 2021 +0100
dhtmled.ocx: Add registration script.
Signed-off-by: Vijay Kiran Kamuju <infyquest(a)gmail.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
dlls/dhtmled.ocx/Makefile.in | 2 ++
dlls/dhtmled.ocx/dhtmled.rc | 20 ++++++++++++++++++++
dlls/dhtmled.ocx/dhtmled.rgs | 19 +++++++++++++++++++
3 files changed, 41 insertions(+)
diff --git a/dlls/dhtmled.ocx/Makefile.in b/dlls/dhtmled.ocx/Makefile.in
index c483de93a05..d4de46adf8c 100644
--- a/dlls/dhtmled.ocx/Makefile.in
+++ b/dlls/dhtmled.ocx/Makefile.in
@@ -3,6 +3,8 @@ IMPORTS = uuid
EXTRADLLFLAGS = -mno-cygwin
+RC_SRCS = dhtmled.rc
+
C_SRCS = \
edit.c \
main.c
diff --git a/dlls/dhtmled.ocx/dhtmled.rc b/dlls/dhtmled.ocx/dhtmled.rc
new file mode 100644
index 00000000000..631697c9b63
--- /dev/null
+++ b/dlls/dhtmled.ocx/dhtmled.rc
@@ -0,0 +1,20 @@
+/*
+ * Copyright 2021 Vijay Kiran Kamuju
+ *
+ * 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
+ */
+
+/* @makedep: dhtmled.rgs */
+1 WINE_REGISTRY dhtmled.rgs
diff --git a/dlls/dhtmled.ocx/dhtmled.rgs b/dlls/dhtmled.ocx/dhtmled.rgs
new file mode 100644
index 00000000000..59946fff17f
--- /dev/null
+++ b/dlls/dhtmled.ocx/dhtmled.rgs
@@ -0,0 +1,19 @@
+HKCR
+{
+ NoRemove CLSID
+ {
+ '{2d360200-fff5-11d1-8d03-00a0c959bc0a}'
+ {
+ Control
+ MiscStatus = s '0'
+ {
+ '1' = s '131473'
+ }
+ }
+ }
+ DHTMLEdit.DHTMLEdit = s 'DHTML Control for IE5'
+ {
+ CLSID = s '{2d360200-fff5-11d1-8d03-00a0c959bc0a}'
+ CurVer = s 'DHTMLEdit.DHTMLEdit.1'
+ }
+}