blob: d0a99dad4922a12c6b1eba0fb3163a82220193ce (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef _TMW_WIN2MAC_
#define _TMW_WIN2MAC_
#include <stdio.h>
#define UInt16 unsigned short int
#define UInt32 unsigned long int
UInt32 DR_SwapFourBytes(UInt32 dw);
UInt16 DR_SwapTwoBytes(UInt16 w);
#endif
|