mirror of
https://github.com/microsoft/Microsoft-3D-Movie-Maker.git
synced 2024-11-22 02:12:33 +01:00
76 lines
1.3 KiB
C
76 lines
1.3 KiB
C
/*
|
|
* Copyright (c) 1993-1995 by Argonaut Technologies Limited. All rights reserved.
|
|
*
|
|
* $Id: brhton.h 1.7 1995/05/25 13:37:25 sam Exp $
|
|
* $Locker: $
|
|
*
|
|
* Converting 'network' (big endian) byte order to host order
|
|
*
|
|
* This is a private implemenation - some platforms do not provide
|
|
* this functionality. For those that do, this file should define
|
|
* the operations in terms of the platform specific API
|
|
*/
|
|
|
|
#ifndef _BRHTON_H_
|
|
#define _BRHTON_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/*
|
|
* Mac is in network order already - little endian
|
|
*
|
|
* XXX SANE format
|
|
*/
|
|
|
|
#if defined(__MPW__) ||\
|
|
defined(__THINKC__)
|
|
|
|
typedef float br_float;
|
|
|
|
#define BrHtoNL(x) (x)
|
|
#define BrNtoHL(x) (x)
|
|
#define BrHtoNS(x) (x)
|
|
#define BrNtoHS(x) (x)
|
|
|
|
|
|
#define BrHtoNF(x) (x)
|
|
#define BrNtoHF(x) (x)
|
|
|
|
#define BR_ENDIAN_BIG 1
|
|
#define BR_ENDIAN_LITTLE 0
|
|
#endif
|
|
|
|
/*
|
|
* PC is little-endian
|
|
*/
|
|
#if defined(__GNUC__) ||\
|
|
defined(__WATCOMC__) || \
|
|
defined(__ZTC__) || \
|
|
defined(__PROTONC__) ||\
|
|
defined(__HIGHC__) ||\
|
|
defined(__BORLANDC__) ||\
|
|
defined(__IBMC__) ||\
|
|
defined(_MSC_VER)
|
|
|
|
#define BrNtoHL(x) BrSwap32(x)
|
|
#define BrHtoNL(x) BrSwap32(x)
|
|
#define BrNtoHS(x) BrSwap16(x)
|
|
#define BrHtoNS(x) BrSwap16(x)
|
|
|
|
#define BrHtoNF(x) BrSwapFloat(x)
|
|
#define BrNtoHF(x) BrSwapFloat(x)
|
|
|
|
#define BR_ENDIAN_BIG 0
|
|
#define BR_ENDIAN_LITTLE 1
|
|
|
|
#endif
|
|
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|
|
#endif
|
|
|