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
95312fcb
Commit
95312fcb
authored
Jan 06, 2006
by
Robert Shearman
Committed by
Alexandre Julliard
Jan 06, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole: Remove "stub" from TRACEs of functions that aren't stubs.
parent
43179c26
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
antimoniker.c
dlls/ole32/antimoniker.c
+1
-1
compositemoniker.c
dlls/ole32/compositemoniker.c
+1
-1
ole2.c
dlls/ole32/ole2.c
+1
-1
storage32.c
dlls/ole32/storage32.c
+1
-1
No files found.
dlls/ole32/antimoniker.c
View file @
95312fcb
...
...
@@ -133,7 +133,7 @@ AntiMonikerImpl_Release(IMoniker* iface)
static
HRESULT
WINAPI
AntiMonikerImpl_GetClassID
(
IMoniker
*
iface
,
CLSID
*
pClassID
)
{
TRACE
(
"(%p,%p)
,stub!
\n
"
,
iface
,
pClassID
);
TRACE
(
"(%p,%p)
\n
"
,
iface
,
pClassID
);
if
(
pClassID
==
NULL
)
return
E_POINTER
;
...
...
dlls/ole32/compositemoniker.c
View file @
95312fcb
...
...
@@ -170,7 +170,7 @@ CompositeMonikerImpl_Release(IMoniker* iface)
static
HRESULT
WINAPI
CompositeMonikerImpl_GetClassID
(
IMoniker
*
iface
,
CLSID
*
pClassID
)
{
TRACE
(
"(%p,%p)
,stub!
\n
"
,
iface
,
pClassID
);
TRACE
(
"(%p,%p)
\n
"
,
iface
,
pClassID
);
if
(
pClassID
==
NULL
)
return
E_POINTER
;
...
...
dlls/ole32/ole2.c
View file @
95312fcb
...
...
@@ -929,7 +929,7 @@ HRESULT WINAPI OleSetContainedObject(
IRunnableObject
*
runnable
=
NULL
;
HRESULT
hres
;
TRACE
(
"(%p,%x)
, stub!
\n
"
,
pUnknown
,
fContained
);
TRACE
(
"(%p,%x)
\n
"
,
pUnknown
,
fContained
);
hres
=
IUnknown_QueryInterface
(
pUnknown
,
&
IID_IRunnableObject
,
...
...
dlls/ole32/storage32.c
View file @
95312fcb
...
...
@@ -5737,7 +5737,7 @@ HRESULT WINAPI StgCreatePropSetStg(IStorage *pstg, DWORD reserved,
{
HRESULT
hr
;
TRACE
(
"(%p, 0x%lx, %p)
: stub
\n
"
,
pstg
,
reserved
,
ppPropSetStg
);
TRACE
(
"(%p, 0x%lx, %p)
\n
"
,
pstg
,
reserved
,
ppPropSetStg
);
if
(
reserved
)
hr
=
STG_E_INVALIDPARAMETER
;
else
...
...
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