widl: Use proper calling convention attributes.

This commit is contained in:
Jacek Caban 2011-07-07 15:09:15 +02:00 committed by Alexandre Julliard
parent b99b9565e8
commit f8c517978b
1 changed files with 4 additions and 4 deletions

View File

@ -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; }