From 6e383d8867081d3ec6b57b4d2f171a4382e83195 Mon Sep 17 00:00:00 2001 From: Duane Bailey Date: Thu, 22 Sep 2005 23:28:58 +0000 Subject: removed win2mac support --- src/net/win2mac.cpp | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 src/net/win2mac.cpp (limited to 'src/net/win2mac.cpp') diff --git a/src/net/win2mac.cpp b/src/net/win2mac.cpp deleted file mode 100644 index 020b808b..00000000 --- a/src/net/win2mac.cpp +++ /dev/null @@ -1,19 +0,0 @@ -#include "win2mac.h" - -UInt32 DR_SwapFourBytes(UInt32 dw) -{ - UInt32 tmp; - tmp = (dw & 0x000000FF); - tmp = ((dw & 0x0000FF00) >> 0x08) | (tmp << 0x08); - tmp = ((dw & 0x00FF0000) >> 0x10) | (tmp << 0x08); - tmp = ((dw & 0xFF000000) >> 0x18) | (tmp << 0x08); - return (tmp); -} - -UInt16 DR_SwapTwoBytes(UInt16 w) -{ - UInt16 tmp; - tmp = (w & 0x00FF); - tmp = ((w & 0xFF00) >> 0x08) | (tmp << 0x08); - return(tmp); -} -- cgit v1.2.3-70-g09d2