Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
5b37fe45
Commit
5b37fe45
authored
Jul 18, 2006
by
Jacek Caban
Committed by
Alexandre Julliard
Jul 19, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added stub implementation of ShowHTMLDialog.
parent
804993de
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
main.c
dlls/mshtml/main.c
+10
-0
mshtml.spec
dlls/mshtml/mshtml.spec
+1
-1
No files found.
dlls/mshtml/main.c
View file @
5b37fe45
...
...
@@ -224,6 +224,16 @@ HRESULT WINAPI DllInstall(BOOL bInstall, LPCWSTR cmdline)
return
S_OK
;
}
/***********************************************************************
* ShowHTMLDialog (MSHTML.@)
*/
HRESULT
WINAPI
ShowHTMLDialog
(
HWND
hwndParent
,
IMoniker
*
pMk
,
VARIANT
*
pvarArgIn
,
WCHAR
*
pchOptions
,
VARIANT
*
pvarArgOut
)
{
FIXME
(
"(%p %p %p %s %p)
\n
"
,
hwndParent
,
pMk
,
pvarArgIn
,
debugstr_w
(
pchOptions
),
pvarArgOut
);
return
E_NOTIMPL
;
}
DEFINE_GUID
(
CLSID_CAnchorBrowsePropertyPage
,
0x3050F3BB
,
0x98B5
,
0x11CF
,
0xBB
,
0x82
,
0x00
,
0xAA
,
0x00
,
0xBD
,
0xCE
,
0x0B
);
DEFINE_GUID
(
CLSID_CBackgroundPropertyPage
,
0x3050F232
,
0x98B5
,
0x11CF
,
0xBB
,
0x82
,
0x00
,
0xAA
,
0x00
,
0xBD
,
0xCE
,
0x0B
);
DEFINE_GUID
(
CLSID_CCDAnchorPropertyPage
,
0x3050F1FC
,
0x98B5
,
0x11CF
,
0xBB
,
0x82
,
0x00
,
0xAA
,
0x00
,
0xBD
,
0xCE
,
0x0B
);
...
...
dlls/mshtml/mshtml.spec
View file @
5b37fe45
...
...
@@ -9,7 +9,7 @@
@ stub PrintHTML
@ stdcall RNIGetCompatibleVersion()
@ stdcall RunHTMLApplication(long long str long)
@ st
ub ShowHTMLDialog
@ st
dcall ShowHTMLDialog(ptr ptr ptr wstr ptr)
@ stub ShowModalDialog
@ stub ShowModelessHTMLDialog
@ stub SvrTri_ClearCache
...
...
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