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
875f7260
Commit
875f7260
authored
Dec 23, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shlwapi/tests: Remove empty traces.
parent
ffe9ace9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
24 deletions
+0
-24
ordinal.c
dlls/shlwapi/tests/ordinal.c
+0
-24
No files found.
dlls/shlwapi/tests/ordinal.c
View file @
875f7260
...
...
@@ -579,7 +579,6 @@ static HRESULT WINAPI Disp_QueryInterface(
REFIID
riid
,
void
**
ppvObject
)
{
trace
(
"
\n
"
);
*
ppvObject
=
NULL
;
if
(
IsEqualIID
(
riid
,
&
IID_IUnknown
)
||
IsEqualIID
(
riid
,
&
IID_IDispatch
))
...
...
@@ -618,7 +617,6 @@ static HRESULT WINAPI Disp_GetTypeInfoCount(
IDispatch
*
This
,
UINT
*
pctinfo
)
{
trace
(
"
\n
"
);
return
ERROR_SUCCESS
;
}
...
...
@@ -628,7 +626,6 @@ static HRESULT WINAPI Disp_GetTypeInfo(
LCID
lcid
,
ITypeInfo
**
ppTInfo
)
{
trace
(
"
\n
"
);
return
ERROR_SUCCESS
;
}
...
...
@@ -640,7 +637,6 @@ static HRESULT WINAPI Disp_GetIDsOfNames(
LCID
lcid
,
DISPID
*
rgDispId
)
{
trace
(
"
\n
"
);
return
ERROR_SUCCESS
;
}
...
...
@@ -698,7 +694,6 @@ static HRESULT WINAPI Enum_QueryInterface(
REFIID
riid
,
void
**
ppvObject
)
{
trace
(
"
\n
"
);
*
ppvObject
=
NULL
;
if
(
IsEqualIID
(
riid
,
&
IID_IUnknown
)
||
IsEqualIID
(
riid
,
&
IID_IEnumConnections
))
...
...
@@ -741,7 +736,6 @@ static HRESULT WINAPI Enum_Next(
{
EnumCon
*
iface
=
(
EnumCon
*
)
This
;
trace
(
"
\n
"
);
if
(
cConnections
>
0
&&
iface
->
idx
<
iface
->
pt
->
sinkCount
)
{
rgcd
->
pUnk
=
iface
->
pt
->
sink
[
iface
->
idx
];
...
...
@@ -760,14 +754,12 @@ static HRESULT WINAPI Enum_Skip(
IEnumConnections
*
This
,
ULONG
cConnections
)
{
trace
(
"
\n
"
);
return
E_FAIL
;
}
static
HRESULT
WINAPI
Enum_Reset
(
IEnumConnections
*
This
)
{
trace
(
"
\n
"
);
return
E_FAIL
;
}
...
...
@@ -775,7 +767,6 @@ static HRESULT WINAPI Enum_Clone(
IEnumConnections
*
This
,
IEnumConnections
**
ppEnum
)
{
trace
(
"
\n
"
);
return
E_FAIL
;
}
...
...
@@ -795,7 +786,6 @@ static HRESULT WINAPI ConPt_QueryInterface(
REFIID
riid
,
void
**
ppvObject
)
{
trace
(
"
\n
"
);
*
ppvObject
=
NULL
;
if
(
IsEqualIID
(
riid
,
&
IID_IUnknown
)
||
IsEqualIID
(
riid
,
&
IID_IConnectionPoint
))
...
...
@@ -850,7 +840,6 @@ static HRESULT WINAPI ConPt_GetConnectionInterface(
{
static
int
i
=
0
;
ConPt
*
iface
=
(
ConPt
*
)
This
;
trace
(
"
\n
"
);
if
(
i
==
0
)
{
i
++
;
...
...
@@ -866,7 +855,6 @@ static HRESULT WINAPI ConPt_GetConnectionPointContainer(
IConnectionPointContainer
**
ppCPC
)
{
ConPt
*
iface
=
(
ConPt
*
)
This
;
trace
(
"
\n
"
);
*
ppCPC
=
(
IConnectionPointContainer
*
)
iface
->
container
;
return
S_OK
;
...
...
@@ -878,7 +866,6 @@ static HRESULT WINAPI ConPt_Advise(
DWORD
*
pdwCookie
)
{
ConPt
*
iface
=
(
ConPt
*
)
This
;
trace
(
"
\n
"
);
if
(
iface
->
sinkCount
==
0
)
iface
->
sink
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
IUnknown
*
));
...
...
@@ -896,7 +883,6 @@ static HRESULT WINAPI ConPt_Unadvise(
DWORD
dwCookie
)
{
ConPt
*
iface
=
(
ConPt
*
)
This
;
trace
(
"
\n
"
);
if
(
dwCookie
>
iface
->
sinkCount
)
return
E_FAIL
;
...
...
@@ -914,7 +900,6 @@ static HRESULT WINAPI ConPt_EnumConnections(
{
EnumCon
*
ec
;
trace
(
"
\n
"
);
ec
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
EnumCon
));
ec
->
vtbl
=
&
enum_vtbl
;
ec
->
refCount
=
1
;
...
...
@@ -942,7 +927,6 @@ static HRESULT WINAPI EnumPt_QueryInterface(
REFIID
riid
,
void
**
ppvObject
)
{
trace
(
"
\n
"
);
*
ppvObject
=
NULL
;
if
(
IsEqualIID
(
riid
,
&
IID_IUnknown
)
||
IsEqualIID
(
riid
,
&
IID_IEnumConnectionPoints
))
...
...
@@ -985,7 +969,6 @@ static HRESULT WINAPI EnumPt_Next(
{
EnumPt
*
iface
=
(
EnumPt
*
)
This
;
trace
(
"
\n
"
);
if
(
cConnections
>
0
&&
iface
->
idx
<
iface
->
container
->
ptCount
)
{
*
rgcd
=
iface
->
container
->
pt
[
iface
->
idx
];
...
...
@@ -1003,14 +986,12 @@ static HRESULT WINAPI EnumPt_Skip(
IEnumConnectionPoints
*
This
,
ULONG
cConnections
)
{
trace
(
"
\n
"
);
return
E_FAIL
;
}
static
HRESULT
WINAPI
EnumPt_Reset
(
IEnumConnectionPoints
*
This
)
{
trace
(
"
\n
"
);
return
E_FAIL
;
}
...
...
@@ -1018,7 +999,6 @@ static HRESULT WINAPI EnumPt_Clone(
IEnumConnectionPoints
*
This
,
IEnumConnectionPoints
**
ppEnumPt
)
{
trace
(
"
\n
"
);
return
E_FAIL
;
}
...
...
@@ -1038,7 +1018,6 @@ static HRESULT WINAPI Contain_QueryInterface(
REFIID
riid
,
void
**
ppvObject
)
{
trace
(
"
\n
"
);
*
ppvObject
=
NULL
;
if
(
IsEqualIID
(
riid
,
&
IID_IUnknown
)
||
IsEqualIID
(
riid
,
&
IID_IConnectionPointContainer
))
...
...
@@ -1090,7 +1069,6 @@ static HRESULT WINAPI Contain_EnumConnectionPoints(
{
EnumPt
*
ec
;
trace
(
"
\n
"
);
ec
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
EnumPt
));
ec
->
vtbl
=
&
enumpt_vtbl
;
ec
->
refCount
=
1
;
...
...
@@ -1108,7 +1086,6 @@ static HRESULT WINAPI Contain_FindConnectionPoint(
{
Contain
*
iface
=
(
Contain
*
)
This
;
ConPt
*
pt
;
trace
(
"
\n
"
);
if
(
!
IsEqualIID
(
riid
,
&
IID_NULL
)
||
iface
->
ptCount
==
0
)
{
...
...
@@ -1219,7 +1196,6 @@ static HRESULT WINAPI Prop_QueryInterface(
REFIID
riid
,
void
**
ppvObject
)
{
trace
(
"
\n
"
);
*
ppvObject
=
NULL
;
if
(
IsEqualIID
(
riid
,
&
IID_IUnknown
)
||
IsEqualIID
(
riid
,
&
IID_IPropertyBag
))
...
...
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