Hi!, I am trying to implement TREMOR(fixed point version of the decoder), which is coded in ANSI C on Microsoft Visual C++ 6.0 suite. While trying to make the executable file, I am getting the folowing error error C2632: 'long' followed by 'long' is illegal Can anybody please find a way out of it -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermail/vorbis/attachments/20040703/a7419b1a/attachment.html
> I am trying to implement TREMOR(fixed point version of the decoder), which is coded in > ANSI C on Microsoft Visual C++ 6.0 suite. While trying to make the executable file, > I am getting the folowing error > error C2632: 'long' followed by 'long' is illegal > > Can anybody please find a way out of itApparently microsoft doesn't support the long long type. So replace these with int64_t or something. jack.