Changeset 15


Ignore:
Timestamp:
09/16/06 15:48:07 (18 years ago)
Author:
zorg
Message:

Add 8bit types
Win32 is little-endian only currently

Location:
branches/zorg/include/mpcdec
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/zorg/include/mpcdec/config_types.h.in

    r6 r15  
    4040#define FALSE 0
    4141
     42typedef char mpc_int8_t;
     43typedef unsigned char mpc_uint8_t;
    4244typedef @SIZE16@ mpc_int16_t;
    4345typedef @USIZE16@ mpc_uint16_t;
  • branches/zorg/include/mpcdec/config_win32.h

    r3 r15  
    4040#define FALSE 0
    4141
     42typedef __int8           mpc_int8_t;
     43typedef unsigned __int8  mpc_uint8_t;
    4244typedef __int16          mpc_int16_t;
    4345typedef unsigned __int16 mpc_uint16_t;
     
    4648typedef __int64          mpc_int64_t;
    4749
     50#define MPC_LITTLE_ENDIAN
     51
    4852#endif // __MUSEPACK_CONFIG_WIN32_H__
Note: See TracChangeset for help on using the changeset viewer.