Commit f50007b8 authored by Matteo Bruni's avatar Matteo Bruni Committed by Alexandre Julliard

d3dcompiler: Parse struct typedefs.

parent 6b2ecb50
......@@ -1373,6 +1373,14 @@ typedef: KW_TYPEDEF var_modifiers type type_specs ';'
if (!add_typedef($2, $3, $4, &loc))
return 1;
}
| KW_TYPEDEF struct_spec type_specs ';'
{
struct source_location loc;
set_location(&loc, &@1);
if (!add_typedef(0, $2, $3, &loc))
return 1;
}
type_specs: type_spec
{
......
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