Skip to content
Snippets Groups Projects
Commit 2660b8f9 authored by Dan Hipschman's avatar Dan Hipschman Committed by Alexandre Julliard
Browse files

widl: Support coclass forward declarations.

parent d68ec1d3
No related branches found
No related tags found
No related merge requests found
......@@ -251,7 +251,7 @@ gbl_statements: { $$ = NULL; }
imp_statements: {}
| imp_statements interfacedec { if (!parse_only) add_interface($2); }
| imp_statements interfacedef { if (!parse_only) add_interface($2); }
| imp_statements coclass ';' {}
| imp_statements coclass ';' { reg_type(NULL, $2->name, 0); if (!parse_only && do_header) write_coclass_forward($2); }
| imp_statements coclassdef { if (!parse_only) add_coclass($2); }
| imp_statements moduledef { if (!parse_only) add_module($2); }
| imp_statements statement {}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment