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
2daff9cc
Commit
2daff9cc
authored
Jul 31, 2011
by
Jacek Caban
Committed by
Alexandre Julliard
Aug 01, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added IOmNavigator::get_appMinorVersion implementation.
parent
cdd09ba1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
2 deletions
+14
-2
omnavigator.c
dlls/mshtml/omnavigator.c
+8
-2
dom.c
dlls/mshtml/tests/dom.c
+6
-0
No files found.
dlls/mshtml/omnavigator.c
View file @
2daff9cc
...
@@ -693,8 +693,14 @@ static HRESULT WINAPI OmNavigator_get_platform(IOmNavigator *iface, BSTR *p)
...
@@ -693,8 +693,14 @@ static HRESULT WINAPI OmNavigator_get_platform(IOmNavigator *iface, BSTR *p)
static
HRESULT
WINAPI
OmNavigator_get_appMinorVersion
(
IOmNavigator
*
iface
,
BSTR
*
p
)
static
HRESULT
WINAPI
OmNavigator_get_appMinorVersion
(
IOmNavigator
*
iface
,
BSTR
*
p
)
{
{
OmNavigator
*
This
=
impl_from_IOmNavigator
(
iface
);
OmNavigator
*
This
=
impl_from_IOmNavigator
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
E_NOTIMPL
;
static
const
WCHAR
zeroW
[]
=
{
'0'
,
0
};
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
p
);
/* NOTE: MSIE returns "0" or values like ";SP2;". Returning "0" should be enough. */
*
p
=
SysAllocString
(
zeroW
);
return
S_OK
;
}
}
static
HRESULT
WINAPI
OmNavigator_get_connectionSpeed
(
IOmNavigator
*
iface
,
LONG
*
p
)
static
HRESULT
WINAPI
OmNavigator_get_connectionSpeed
(
IOmNavigator
*
iface
,
LONG
*
p
)
...
...
dlls/mshtml/tests/dom.c
View file @
2daff9cc
...
@@ -3942,6 +3942,12 @@ static void test_navigator(IHTMLDocument2 *doc)
...
@@ -3942,6 +3942,12 @@ static void test_navigator(IHTMLDocument2 *doc)
skip
(
"nonstandard user agent
\n
"
);
skip
(
"nonstandard user agent
\n
"
);
}
}
bstr
=
NULL
;
hres
=
IOmNavigator_get_appMinorVersion
(
navigator
,
&
bstr
);
ok
(
hres
==
S_OK
,
"get_appMonorVersion failed: %08x
\n
"
,
hres
);
ok
(
bstr
!=
NULL
,
"appMinorVersion returned NULL
\n
"
);
SysFreeString
(
bstr
);
test_mime_types_col
(
navigator
);
test_mime_types_col
(
navigator
);
ref
=
IOmNavigator_Release
(
navigator
);
ref
=
IOmNavigator_Release
(
navigator
);
...
...
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