Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
21219fa3
Commit
21219fa3
authored
Nov 08, 2022
by
Gabriel Ivăncescu
Committed by
Alexandre Julliard
Nov 08, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Add SVG and XHTML document information to the registry.
Signed-off-by:
Gabriel Ivăncescu
<
gabrielopcode@gmail.com
>
parent
4bd8339d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
42 additions
and
0 deletions
+42
-0
mshtml.inf
dlls/mshtml/mshtml.inf
+24
-0
mshtml_classes.idl
dlls/mshtml/mshtml_classes.idl
+18
-0
No files found.
dlls/mshtml/mshtml.inf
View file @
21219fa3
...
...
@@ -49,6 +49,16 @@ HKCR,"CLSID\%CLSID_Scriptlet%\Programmable",,16
HKCR,"CLSID\%CLSID_Scriptlet%\ToolboxBitmap32",,,"%16422%\Internet Explorer\iexplore.exe,1"
HKCR,"MIME\Database\Content Type\text/x-scriptlet","CLSID",,"%CLSID_Scriptlet%"
;; SVGDocument
HKCR,"CLSID\{30590066-98B5-11CF-BB82-00AA00BDCE0B}\BrowseInPlace",,16
HKCR,"CLSID\{30590066-98B5-11CF-BB82-00AA00BDCE0B}\DefaultIcon",,0x00020000,"%16422%\Internet Explorer\iexplore.exe,1"
HKCR,"CLSID\{30590066-98B5-11CF-BB82-00AA00BDCE0B}\MiscStatus",,,"2228625"
;; XHTMLDocument
HKCR,"CLSID\{30590067-98B5-11CF-BB82-00AA00BDCE0B}\BrowseInPlace",,16
HKCR,"CLSID\{30590067-98B5-11CF-BB82-00AA00BDCE0B}\DefaultIcon",,0x00020000,"%16422%\Internet Explorer\iexplore.exe,1"
HKCR,"CLSID\{30590067-98B5-11CF-BB82-00AA00BDCE0B}\MiscStatus",,,"2228625"
[Protocols.Reg]
HKCR,"PROTOCOLS\Handler\javascript","CLSID",,"%CLSID_JSProtocol%"
...
...
@@ -241,6 +251,12 @@ HKCR,".ai","Content Type",,"application/postscript"
HKCR,".eps","Content Type",,"application/postscript"
HKCR,".ps","Content Type",,"application/postscript"
;; SVG
HKCR,"MIME\Database\Content Type\image/svg+xml","CLSID",,"{30590066-98B5-11CF-BB82-00AA00BDCE0B}"
HKCR,"MIME\Database\Content Type\image/svg+xml","Extension",,".svg"
HKCR,".svg",,,"svgfile"
HKCR,".svg","Content Type",,"image/svg+xml"
;; TAR
HKCR,"MIME\Database\Content Type\application/x-tar","Extension",,".tar"
HKCR,".tar","Content Type",,"application/x-tar"
...
...
@@ -278,6 +294,14 @@ HKCR,"xbmfile\shell\open\ddeexec\Application",,,"IExplore"
HKCR,"xbmfile\shell\open\ddeexec\Topic",,,"WWW_OpenURL"
;; HKCR,"xbmfile\DefaultIcon",,,"%16422%\Internet Explorer\iexplore.exe,9"
;; XHTML
HKCR,"MIME\Database\Content Type\application/xhtml+xml","CLSID",,"{30590067-98B5-11CF-BB82-00AA00BDCE0B}"
HKCR,"MIME\Database\Content Type\application/xhtml+xml","Extension",,".xht"
HKCR,".xht",,,"xhtmlfile"
HKCR,".xht","Content Type",,"application/xhtml+xml"
HKCR,".xhtml",,,"xhtmlfile"
HKCR,".xhtml","Content Type",,"application/xhtml+xml"
;; XML
HKCR,"MIME\Database\Content Type\application/xml","CLSID",,"{48123BC4-99D9-11D1-A6B3-00C04FD91555}"
HKCR,"MIME\Database\Content Type\application/xml","Extension",,".xml"
...
...
dlls/mshtml/mshtml_classes.idl
View file @
21219fa3
...
...
@@ -296,6 +296,15 @@ coclass ResProtocol { }
coclass
Scriptlet
{
}
[
helpstring
(
"SVG Document"
),
progid
(
"svgfile"
),
threading
(
apartment
),
version
(
1.0
),
uuid
(
30590066
-
98b5
-
11
cf
-
bb82
-
00
aa00bdce0b
)
]
coclass
SVGDocumentClass
{
}
[
helpstring
(
"Microsoft HTML Resource Pluggable Protocol"
),
threading
(
apartment
),
uuid
(
76
e67a63
-
06
e9
-
11
d2
-
a840
-
006008059382
)
...
...
@@ -308,3 +317,12 @@ coclass SysimageProtocol { }
uuid
(
429
af92c
-
a51f
-
11
d2
-861e-00
c04fa35c89
)
]
coclass
TridentAPI
{
}
[
helpstring
(
"XHTML Document"
),
progid
(
"xhtmlfile"
),
threading
(
apartment
),
version
(
1.0
),
uuid
(
30590067
-
98b5
-
11
cf
-
bb82
-
00
aa00bdce0b
)
]
coclass
XHTMLDocumentClass
{
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment