[Mingw-w64-public] IsEqualGUID

2012-08-24 Thread Roger Pack
I don't know if this is a bug, or even the right forum, but this line: IsEqualGUID(FORMAT_WaveFormatEx, FORMAT_WaveFormatEx); using cross compiled mingw-w64, in a .c file, seems to yield this: libavdevice/dshow.c:607:3: error: incompatible type for argument 1 of ‘memcmp’ In file included from

Re: [Mingw-w64-public] IsEqualGUID

2012-08-24 Thread Jacek Caban
On 08/24/12 18:24, Roger Pack wrote: I don't know if this is a bug, or even the right forum, but this line: IsEqualGUID(FORMAT_WaveFormatEx, FORMAT_WaveFormatEx); The correct form is probably: IsEqualGUID(FORMAT_WaveFormatEx, FORMAT_WaveFormatEx); Your form would be valid in C++, but not in C.