Commit 560a7567 authored by Ove Kaaven's avatar Ove Kaaven Committed by Alexandre Julliard

Don't add imported constructs to any typelib output by default.

parent e92b7eed
...@@ -221,10 +221,10 @@ gbl_statements: { $$ = NULL; } ...@@ -221,10 +221,10 @@ gbl_statements: { $$ = NULL; }
; ;
imp_statements: {} imp_statements: {}
| imp_statements interfacedec { add_interface($2); } | imp_statements interfacedec { if (!parse_only) add_interface($2); }
| imp_statements interfacedef { add_interface($2); } | imp_statements interfacedef { if (!parse_only) add_interface($2); }
| imp_statements coclassdef { add_coclass($2); } | imp_statements coclassdef { if (!parse_only) add_coclass($2); }
| imp_statements moduledef { add_module($2); } | imp_statements moduledef { if (!parse_only) add_module($2); }
| imp_statements statement {} | imp_statements statement {}
; ;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment