Re: Byteswapping

2003-10-09 Thread Warren_Baird
> The best is to use the Rtl*ByteSwap functions from winternl.h. That is certainly the best solution --- I hadn't noticed that those had been added... I'll try redoing our swapping code with them and make sure it all works... Warren

Re: Byteswapping

2003-10-08 Thread Alexandre Julliard
[EMAIL PROTECTED] writes: > The best solution I can think of at the moment is to put the byteswap macros > into wine/include/wine/port.h, which is one of the few main wine header that is > included in the wrc code - but then we'll have to include config.h and port.h in > at least one place they ar

Byteswapping

2003-10-08 Thread Warren_Baird
Hi all, There are some changes I'd like to submit as patches, but I'm not sure the best way to go about it. We need to add some byteswapping code in a few places to make things happier on big-endian machines. The problem is that the byteswap macros only exist inside wine/tools/wrc