Commit 0d4f6bf2 authored by Kai Tietz's avatar Kai Tietz Committed by Alexandre Julliard

widl: Allow hexadecimal argument for version-attribute.

parent 60beb40c
......@@ -1111,6 +1111,7 @@ uniondef: tUNION t_ident '{' ne_union_fields '}'
version:
aNUM { $$ = MAKEVERSION($1, 0); }
| aNUM '.' aNUM { $$ = MAKEVERSION($1, $3); }
| aHEXNUM { $$ = $1; }
;
%%
......
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