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
2ede7a5a
Commit
2ede7a5a
authored
Nov 05, 2019
by
Nikolay Sivov
Committed by
Alexandre Julliard
Nov 05, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comsvcs: Add GetTimeOfLastChange() for "new" moniker.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
cce9a5f1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
main.c
dlls/comsvcs/main.c
+2
-2
comsvcs.c
dlls/comsvcs/tests/comsvcs.c
+0
-1
No files found.
dlls/comsvcs/main.c
View file @
2ede7a5a
...
@@ -577,9 +577,9 @@ static HRESULT WINAPI new_moniker_IsRunning(IMoniker* iface, IBindCtx *pbc, IMon
...
@@ -577,9 +577,9 @@ static HRESULT WINAPI new_moniker_IsRunning(IMoniker* iface, IBindCtx *pbc, IMon
static
HRESULT
WINAPI
new_moniker_GetTimeOfLastChange
(
IMoniker
*
iface
,
IBindCtx
*
pbc
,
IMoniker
*
pmkToLeft
,
static
HRESULT
WINAPI
new_moniker_GetTimeOfLastChange
(
IMoniker
*
iface
,
IBindCtx
*
pbc
,
IMoniker
*
pmkToLeft
,
FILETIME
*
itemtime
)
FILETIME
*
itemtime
)
{
{
FIXM
E
(
"%p, %p, %p, %p.
\n
"
,
iface
,
pbc
,
pmkToLeft
,
itemtime
);
TRAC
E
(
"%p, %p, %p, %p.
\n
"
,
iface
,
pbc
,
pmkToLeft
,
itemtime
);
return
E_NOTIMPL
;
return
MK_E_UNAVAILABLE
;
}
}
static
HRESULT
WINAPI
new_moniker_Inverse
(
IMoniker
*
iface
,
IMoniker
**
inverse
)
static
HRESULT
WINAPI
new_moniker_Inverse
(
IMoniker
*
iface
,
IMoniker
**
inverse
)
...
...
dlls/comsvcs/tests/comsvcs.c
View file @
2ede7a5a
...
@@ -344,7 +344,6 @@ todo_wine
...
@@ -344,7 +344,6 @@ todo_wine
ok
(
hr
==
S_FALSE
,
"Unexpected hr %#x.
\n
"
,
hr
);
ok
(
hr
==
S_FALSE
,
"Unexpected hr %#x.
\n
"
,
hr
);
hr
=
IMoniker_GetTimeOfLastChange
(
moniker
,
bindctx
,
NULL
,
&
filetime
);
hr
=
IMoniker_GetTimeOfLastChange
(
moniker
,
bindctx
,
NULL
,
&
filetime
);
todo_wine
ok
(
hr
==
MK_E_UNAVAILABLE
,
"Unexpected hr %#x.
\n
"
,
hr
);
ok
(
hr
==
MK_E_UNAVAILABLE
,
"Unexpected hr %#x.
\n
"
,
hr
);
hr
=
IMoniker_BindToObject
(
moniker
,
bindctx
,
NULL
,
&
IID_IUnknown
,
(
void
**
)
&
obj
);
hr
=
IMoniker_BindToObject
(
moniker
,
bindctx
,
NULL
,
&
IID_IUnknown
,
(
void
**
)
&
obj
);
...
...
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