Re: winemp3.acm: Avoid using the long type.

2010-05-21 Thread Chris Robinson
On Friday, May 21, 2010 11:59:40 am Michael Stefaniuc wrote: > mpg123_getformat() is a host native lib aka a unix lib thus expects a > "unix long". A "unix long" translates to LONG_PTR in Wine. My patch is > actually a no-op. The lib is also available for Windows, and AFAIK there's no reason winem

Re: winemp3.acm: Avoid using the long type.

2010-05-21 Thread Michael Stefaniuc
On 05/21/2010 07:57 PM, Chris Robinson wrote: Now to the list... On Friday, May 21, 2010 9:32:17 am you wrote: Chris Robinson wrote: On Friday, May 21, 2010 3:13:36 am Michael Stefaniuc wrote: @@ -191,7 +191,7 @@ static void mp3_horse(PACMDRVSTREAMINSTANCE adsi, if (ret == MPG123_N

Re: winemp3.acm: Avoid using the long type.

2010-05-21 Thread Chris Robinson
Now to the list... On Friday, May 21, 2010 9:32:17 am you wrote: > Chris Robinson wrote: > > On Friday, May 21, 2010 3:13:36 am Michael Stefaniuc wrote: > >> @@ -191,7 +191,7 @@ static void mp3_horse(PACMDRVSTREAMINSTANCE adsi, > >> > >> if (ret == MPG123_NEW_FORMAT) > >> { > >>

Re: winemp3.acm: Avoid using the long type.

2010-05-21 Thread Michael Stefaniuc
Chris Robinson wrote: > On Friday, May 21, 2010 3:13:36 am Michael Stefaniuc wrote: >> @@ -191,7 +191,7 @@ static void mp3_horse(PACMDRVSTREAMINSTANCE adsi, >> >> if (ret == MPG123_NEW_FORMAT) >> { >> -long rate; >> +LONG_PTR rate; >> int chann

Re: winemp3.acm: Avoid using the long type.

2010-05-21 Thread Chris Robinson
On Friday, May 21, 2010 3:13:36 am Michael Stefaniuc wrote: > @@ -191,7 +191,7 @@ static void mp3_horse(PACMDRVSTREAMINSTANCE adsi, > > if (ret == MPG123_NEW_FORMAT) > { > -long rate; > +LONG_PTR rate; > int channels, enc; > mpg12