Re: [PATCH 4/7] widl: Support __fastcall and __pascal calling conventions.

2008-04-02 Thread Dan Hipschman
On Wed, Apr 02, 2008 at 11:46:27AM -0700, Dan Hipschman wrote:
> On Wed, Apr 02, 2008 at 12:56:21PM +0100, Robert Shearman wrote:
> > @@ -186,13 +186,19 @@ static const struct keyword keywords[] = {
> > {"FALSE",   tFALSE},
> > {"TRUE",tTRUE},
> > {"__cdecl", tCDECL},
> > +   {"__fastcall",  tFASTCALL},
> > +   {"__pascal",tPASCAL},
> > {"__int64", tINT64},
> > {"__stdcall",   tSTDCALL},
> 
> __pascal should come after __int64.
> 

I sent a patch.




Re: [PATCH 4/7] widl: Support __fastcall and __pascal calling conventions.

2008-04-02 Thread Dan Hipschman
On Wed, Apr 02, 2008 at 12:56:21PM +0100, Robert Shearman wrote:
> @@ -186,13 +186,19 @@ static const struct keyword keywords[] = {
>   {"FALSE",   tFALSE},
>   {"TRUE",tTRUE},
>   {"__cdecl", tCDECL},
> + {"__fastcall",  tFASTCALL},
> + {"__pascal",tPASCAL},
>   {"__int64", tINT64},
>   {"__stdcall",   tSTDCALL},

__pascal should come after __int64.