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
feee099e
Commit
feee099e
authored
Dec 02, 2006
by
Rob Shearman
Committed by
Alexandre Julliard
Dec 04, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Add some more traces to the data cache to make debugging easier.
parent
e99168e1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
datacache.c
dlls/ole32/datacache.c
+7
-0
No files found.
dlls/ole32/datacache.c
View file @
feee099e
...
...
@@ -1643,6 +1643,8 @@ static HRESULT WINAPI DataCache_Draw(
}
}
WARN
(
"no data could be found to be drawn
\n
"
);
return
OLE_E_BLANK
;
}
...
...
@@ -1856,6 +1858,8 @@ static HRESULT WINAPI DataCache_GetExtent(
}
}
WARN
(
"no data could be found to get the extents from
\n
"
);
/*
* This method returns OLE_E_BLANK when it fails.
*/
...
...
@@ -1927,6 +1931,7 @@ static HRESULT WINAPI DataCache_Cache(
cache_entry
=
DataCache_GetEntryForFormatEtc
(
This
,
pformatetc
);
if
(
cache_entry
)
{
TRACE
(
"found an existing cache entry
\n
"
);
*
pdwConnection
=
cache_entry
->
id
;
return
CACHE_S_SAMECACHE
;
}
...
...
@@ -1955,6 +1960,8 @@ static HRESULT WINAPI DataCache_Uncache(
return
S_OK
;
}
WARN
(
"no connection found for %d
\n
"
,
dwConnection
);
return
OLE_E_NOCONNECTION
;
}
...
...
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