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
4d5bebb3
Commit
4d5bebb3
authored
Aug 15, 2012
by
Jacek Caban
Committed by
Alexandre Julliard
Aug 15, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shlwapi: Use proper helpers for iface calls.
parent
db829975
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
17 deletions
+17
-17
ordinal.c
dlls/shlwapi/ordinal.c
+6
-6
ordinal.c
dlls/shlwapi/tests/ordinal.c
+11
-11
No files found.
dlls/shlwapi/ordinal.c
View file @
4d5bebb3
...
...
@@ -446,7 +446,7 @@ HRESULT WINAPI RegisterDefaultAcceptHeaders(LPBC lpBC, IUnknown *lpUnknown)
IEnumFORMATETC_Release
(
pClone
);
}
I
EnumFORMATETC
_Release
(
pIUnknown
);
I
Unknown
_Release
(
pIUnknown
);
}
IUnknown_Release
(
V_UNKNOWN
(
&
var
));
}
...
...
@@ -1202,7 +1202,7 @@ HRESULT WINAPI ConnectToConnectionPoint(IUnknown* lpUnkSink, REFIID riid, BOOL f
IConnectionPoint_Release
(
lpCP
);
/* Release it */
}
I
Unknown
_Release
(
lpContainer
);
I
ConnectionPointContainer
_Release
(
lpContainer
);
}
return
hRet
;
}
...
...
@@ -1400,7 +1400,7 @@ HRESULT WINAPI IUnknown_SetSite(
{
hr
=
IObjectWithSite_SetSite
(
iobjwithsite
,
site
);
TRACE
(
"done IObjectWithSite_SetSite ret=%08x
\n
"
,
hr
);
I
Unknown
_Release
(
iobjwithsite
);
I
ObjectWithSite
_Release
(
iobjwithsite
);
}
else
{
...
...
@@ -1410,7 +1410,7 @@ HRESULT WINAPI IUnknown_SetSite(
hr
=
IInternetSecurityManager_SetSecuritySite
(
isecmgr
,
(
IInternetSecurityMgrSite
*
)
site
);
TRACE
(
"done IInternetSecurityManager_SetSecuritySite ret=%08x
\n
"
,
hr
);
I
Unknown
_Release
(
isecmgr
);
I
InternetSecurityManager
_Release
(
isecmgr
);
}
return
hr
;
}
...
...
@@ -1493,7 +1493,7 @@ HRESULT WINAPI IUnknown_QueryService(IUnknown* lpUnknown, REFGUID sid, REFIID ri
TRACE
(
"(IServiceProvider*)%p returned (IUnknown*)%p
\n
"
,
pService
,
*
lppOut
);
I
Unknown
_Release
(
pService
);
I
ServiceProvider
_Release
(
pService
);
}
return
hRet
;
}
...
...
@@ -1613,7 +1613,7 @@ HRESULT WINAPI IUnknown_UIActivateIO(IUnknown *unknown, BOOL activate, LPMSG msg
if
(
ret
==
S_OK
)
{
ret
=
IInputObject_UIActivateIO
(
object
,
activate
,
msg
);
I
Unknown
_Release
(
object
);
I
InputObject
_Release
(
object
);
}
return
ret
;
...
...
dlls/shlwapi/tests/ordinal.c
View file @
4d5bebb3
...
...
@@ -833,7 +833,7 @@ static HRESULT WINAPI Disp_QueryInterface(
if
(
*
ppvObject
)
{
I
Unknown
_AddRef
(
This
);
I
Dispatch
_AddRef
(
This
);
return
S_OK
;
}
...
...
@@ -948,7 +948,7 @@ static HRESULT WINAPI Enum_QueryInterface(
if
(
*
ppvObject
)
{
I
Unknown
_AddRef
(
This
);
I
EnumConnections
_AddRef
(
This
);
return
S_OK
;
}
...
...
@@ -1040,7 +1040,7 @@ static HRESULT WINAPI ConPt_QueryInterface(
if
(
*
ppvObject
)
{
I
Unknown
_AddRef
(
This
);
I
ConnectionPoint
_AddRef
(
This
);
return
S_OK
;
}
...
...
@@ -1181,7 +1181,7 @@ static HRESULT WINAPI EnumPt_QueryInterface(
if
(
*
ppvObject
)
{
I
Unknown
_AddRef
(
This
);
I
EnumConnectionPoints
_AddRef
(
This
);
return
S_OK
;
}
...
...
@@ -1217,7 +1217,7 @@ static HRESULT WINAPI EnumPt_Next(
if
(
cConnections
>
0
&&
iface
->
idx
<
iface
->
container
->
ptCount
)
{
*
rgcd
=
iface
->
container
->
pt
[
iface
->
idx
];
I
Unknown
_AddRef
(
iface
->
container
->
pt
[
iface
->
idx
]);
I
ConnectionPoint
_AddRef
(
iface
->
container
->
pt
[
iface
->
idx
]);
if
(
pcFetched
)
*
pcFetched
=
1
;
iface
->
idx
++
;
...
...
@@ -1272,7 +1272,7 @@ static HRESULT WINAPI Contain_QueryInterface(
if
(
*
ppvObject
)
{
I
Unknown
_AddRef
(
This
);
I
ConnectionPointContainer
_AddRef
(
This
);
return
S_OK
;
}
...
...
@@ -1300,7 +1300,7 @@ static ULONG WINAPI Contain_Release(
{
int
i
;
for
(
i
=
0
;
i
<
iface
->
ptCount
;
i
++
)
I
Unknown
_Release
(
iface
->
pt
[
i
]);
I
ConnectionPoint
_Release
(
iface
->
pt
[
i
]);
HeapFree
(
GetProcessHeap
(),
0
,
iface
->
pt
);
}
HeapFree
(
GetProcessHeap
(),
0
,
This
);
...
...
@@ -1456,7 +1456,7 @@ static HRESULT WINAPI Prop_QueryInterface(
if
(
*
ppvObject
)
{
I
Unknown
_AddRef
(
This
);
I
PropertyBag
_AddRef
(
This
);
return
S_OK
;
}
...
...
@@ -2104,7 +2104,7 @@ static HRESULT WINAPI IOleCommandTargetImpl_QueryInterface(IOleCommandTarget *if
if
(
*
ppvObj
)
{
I
Unknown
_AddRef
(
iface
);
I
OleCommandTarget
_AddRef
(
iface
);
return
S_OK
;
}
...
...
@@ -2215,7 +2215,7 @@ static HRESULT WINAPI IServiceProviderImpl_QueryInterface(IServiceProvider *ifac
if
(
*
ppvObj
)
{
I
Unknown
_AddRef
(
iface
);
I
ServiceProvider
_AddRef
(
iface
);
/* native uses redefined IID_IServiceProvider symbol, so we can't compare pointers */
if
(
IsEqualIID
(
riid
,
&
IID_IServiceProvider
))
add_call
(
&
trace_got
,
1
,
iface
,
&
IID_IServiceProvider
,
0
,
0
,
0
);
...
...
@@ -2333,7 +2333,7 @@ static HRESULT WINAPI IProfferServiceImpl_QueryInterface(IProfferService *iface,
if
(
*
ppvObj
)
{
I
Unknown
_AddRef
(
iface
);
I
ProfferService
_AddRef
(
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