widl: Use proper calling convention attributes.
This commit is contained in:
parent
b99b9565e8
commit
f8c517978b
|
@ -588,10 +588,10 @@ uuid_string:
|
|||
$$ = parse_uuid($1); }
|
||||
;
|
||||
|
||||
callconv: tCDECL { $$ = $<str>1; }
|
||||
| tFASTCALL { $$ = $<str>1; }
|
||||
| tPASCAL { $$ = $<str>1; }
|
||||
| tSTDCALL { $$ = $<str>1; }
|
||||
callconv: tCDECL { $$ = xstrdup("__cdecl"); }
|
||||
| tFASTCALL { $$ = xstrdup("__fastcall"); }
|
||||
| tPASCAL { $$ = xstrdup("__pascal"); }
|
||||
| tSTDCALL { $$ = xstrdup("__stdcall"); }
|
||||
;
|
||||
|
||||
cases: { $$ = NULL; }
|
||||
|
|
Loading…
Reference in New Issue