Re: signedness/WINAPI changing question

2007-02-11 Thread Francois Gouget
On Sat, 10 Feb 2007, Joris Huizer wrote: > > I find some function > LONG WINAPI AVIStreamSampleToTime(PAVISTREAM > pstream, LONG lSample) > (in the avifil32 dll), the second parameter should > really be an ULONG instead of a LONG. It'd fix the > signedness problems. > > My question is, is such

Re: signedness/WINAPI changing question

2007-02-11 Thread Michael Stefaniuc
Joris Huizer wrote: > I have a small question: > > I find some function > LONG WINAPI AVIStreamSampleToTime(PAVISTREAM > pstream, LONG lSample) > (in the avifil32 dll), the second parameter should > really be an ULONG instead of a LONG. It'd fix the > signedness problems. > > My question is, is

signedness/WINAPI changing question

2007-02-10 Thread Joris Huizer
I have a small question: I find some function LONG WINAPI AVIStreamSampleToTime(PAVISTREAM pstream, LONG lSample) (in the avifil32 dll), the second parameter should really be an ULONG instead of a LONG. It'd fix the signedness problems. My question is, is such a change allowed? And what should