config.h 411 B

12345678910111213141516
  1. #if defined(_MSC_VER) && (_MSC_VER >= 1400)
  2. #pragma warning(disable : 4996)
  3. #endif
  4. // The internal types
  5. typedef unsigned char Bit8u;
  6. typedef signed char Bit8s;
  7. typedef unsigned short Bit16u;
  8. typedef signed short Bit16s;
  9. typedef unsigned long Bit32u;
  10. typedef signed long Bit32s;
  11. typedef unsigned __int64 Bit64u;
  12. typedef signed __int64 Bit64s;
  13. typedef unsigned int Bitu;
  14. typedef signed int Bits;