From: Vijay Kiran Kamuju Subject: [PATCH 1/2] dhtmled.ocx: Add Dll registry resource. Message-Id: Date: Sat, 6 Feb 2021 10:23:35 +0100 Signed-off-by: Vijay Kiran Kamuju
Signed-off-by: Vijay Kiran Kamuju <infyquest@gmail.com>
From f1caca7b58550e969371f39ed6a42652a27e86aa Mon Sep 17 00:00:00 2001 From: Vijay Kiran Kamuju Date: Sat, 6 Feb 2021 10:14:46 +0100 Subject: [PATCH 1/2] dhtmled.ocx: Add Dll registry resource. Signed-off-by: Vijay Kiran Kamuju --- dlls/dhtmled.ocx/Makefile.in | 2 ++ dlls/dhtmled.ocx/dhtmled.rc | 20 ++++++++++++++++++++ dlls/dhtmled.ocx/dhtmled.rgs | 19 +++++++++++++++++++ 3 files changed, 41 insertions(+) create mode 100644 dlls/dhtmled.ocx/dhtmled.rc create mode 100644 dlls/dhtmled.ocx/dhtmled.rgs 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..0829fcbab24 --- /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 */ +2 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' + } +} -- 2.30.0