removed - conflicts with headers on *nix. functionality moved into wsdl

This was SVN commit r333.
This commit is contained in:
janwas 2004-06-01 16:52:30 +00:00
parent bf846be6f5
commit 3856c2ab1e
2 changed files with 0 additions and 89 deletions

View File

@ -1,70 +0,0 @@
#include "precompiled.h"
#include "lib.h"
// don't need to implement on VC - header maps bswap* to instrinsics
#ifndef _MSC_VER
u16 bswap16(u16 x)
{
return (u16)(((x & 0xff) << 8) | (x >> 8));
}
u32 bswap32(u32 x)
{
u32 t = x;
for(int i = 0; i < 4; i++)
{
x <<= 8;
x |= t & 0xff;
}
return x;
}
u64 bswap64(u64 x)
{
u64 t = x;
for(int i = 0; i < 8; i++)
{
x <<= 8;
x |= t & 0xff;
}
return x;
}
#endif // #ifndef _MSC_VER
void bswap32(const u8* data, int cnt)
{
#ifdef _M_IX86
UNUSED(data)
UNUSED(cnt)
__asm
{
mov edx, [data]
mov ecx, [cnt]
$loop: mov eax, [edx]
bswap eax
mov [edx], eax
add edx, 4
dec ecx
jnz $loop
}
#else
u32* p = (u32*)data;
for(int i = 0; i < cnt; i++, p++)
*p = bswap32(*p);
#endif
}

View File

@ -1,19 +0,0 @@
// map to intrinsics on VC
#ifdef _MSC_VER
#include <stdlib.h>
#define bswap16 _byteswap_ushort
#define bswap32 _byteswap_ulong
#define bswap64 _byteswap_uint64
// otherwise, define our own functions
#else
extern u16 bswap16(u16);
extern u32 bswap32(u32);
extern u64 bswap64(u64);
#endif
extern void bswap32(const u8* data, int cnt);