License: X11
ChangeLog:
Jon Griffiths <jon_p_griffiths@yahoo.com>
+tools/widl/header.c
Accept child objects with no methods.
=====
"Don't wait for the seas to part, or messiahs to come;
Don't you sit around and waste this chance..." - Live
jon_p_griffiths@yahoo.com
__________________________________
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com
--- wine/tools/widl/header.c Fri Jul 4 17:48:46 2003
+++ wine-develop/tools/widl/header.c Fri Jul 4 20:26:40 2003
@@ -679,7 +679,7 @@
void write_com_interface(type_t *iface)
{
- if (!iface->funcs) {
+ if (!iface->funcs && !iface->ref) {
yywarning("%s has no methods", iface->name);
return;
}