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
92223c19
Commit
92223c19
authored
Dec 05, 2007
by
Jacek Caban
Committed by
Alexandre Julliard
Dec 05, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Improve debug traces.
parent
87e2bb3e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
2 deletions
+19
-2
conpoint.c
dlls/mshtml/conpoint.c
+19
-2
No files found.
dlls/mshtml/conpoint.c
View file @
92223c19
...
...
@@ -36,6 +36,23 @@ WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
#define CONPOINT(x) ((IConnectionPoint*) &(x)->lpConnectionPointVtbl);
static
const
char
*
debugstr_cp_guid
(
REFIID
riid
)
{
#define X(x) \
if(IsEqualGUID(riid, &x)) \
return #x
X
(
IID_IPropertyNotifySink
);
X
(
DIID_HTMLDocumentEvents
);
X
(
DIID_HTMLDocumentEvents2
);
X
(
DIID_HTMLTableEvents
);
X
(
DIID_HTMLTextContainerEvents
);
#undef X
return
debugstr_guid
(
riid
);
}
void
call_property_onchanged
(
ConnectionPoint
*
This
,
DISPID
dispid
)
{
DWORD
i
;
...
...
@@ -244,7 +261,7 @@ static HRESULT WINAPI ConnectionPointContainer_FindConnectionPoint(IConnectionPo
ConnectionPointContainer
*
This
=
CONPTCONT_THIS
(
iface
);
ConnectionPoint
*
iter
;
TRACE
(
"(%p)->(%s %p)
\n
"
,
This
,
debugstr_guid
(
riid
),
ppCP
);
TRACE
(
"(%p)->(%s %p)
\n
"
,
This
,
debugstr_
cp_
guid
(
riid
),
ppCP
);
*
ppCP
=
NULL
;
...
...
@@ -258,7 +275,7 @@ static HRESULT WINAPI ConnectionPointContainer_FindConnectionPoint(IConnectionPo
return
S_OK
;
}
FIXME
(
"unsupported riid %s
\n
"
,
debugstr_guid
(
riid
));
FIXME
(
"unsupported riid %s
\n
"
,
debugstr_
cp_
guid
(
riid
));
return
CONNECT_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