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
316ca9ed
Commit
316ca9ed
authored
Aug 19, 2012
by
Nikolay Sivov
Committed by
Alexandre Julliard
Aug 20, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
itss: Call interface methods properly.
parent
fa4148d2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
itss.c
dlls/itss/itss.c
+2
-2
moniker.c
dlls/itss/moniker.c
+4
-4
No files found.
dlls/itss/itss.c
View file @
316ca9ed
...
...
@@ -196,8 +196,8 @@ static HRESULT WINAPI ITStorageImpl_QueryInterface(
if
(
IsEqualGUID
(
riid
,
&
IID_IUnknown
)
||
IsEqualGUID
(
riid
,
&
IID_IITStorage
))
{
I
ClassFactory
_AddRef
(
iface
);
*
ppvObject
=
This
;
I
ITStorage
_AddRef
(
iface
);
*
ppvObject
=
iface
;
return
S_OK
;
}
...
...
dlls/itss/moniker.c
View file @
316ca9ed
...
...
@@ -65,8 +65,8 @@ static HRESULT WINAPI ITS_IMonikerImpl_QueryInterface(
if
(
IsEqualGUID
(
riid
,
&
IID_IUnknown
)
||
IsEqualGUID
(
riid
,
&
IID_IParseDisplayName
))
{
I
ClassFactory
_AddRef
(
iface
);
*
ppvObject
=
This
;
I
Moniker
_AddRef
(
iface
);
*
ppvObject
=
iface
;
return
S_OK
;
}
...
...
@@ -395,8 +395,8 @@ static HRESULT WINAPI ITS_IParseDisplayNameImpl_QueryInterface(
if
(
IsEqualGUID
(
riid
,
&
IID_IUnknown
)
||
IsEqualGUID
(
riid
,
&
IID_IParseDisplayName
))
{
I
ClassFactory
_AddRef
(
iface
);
*
ppvObject
=
This
;
I
ParseDisplayName
_AddRef
(
iface
);
*
ppvObject
=
iface
;
return
S_OK
;
}
...
...
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