mirror of
https://github.com/claunia/flac.git
synced 2025-12-16 18:54:26 +00:00
renamed ordinals.h to ordinals.h.in
This commit is contained in:
@@ -30,19 +30,26 @@
|
|||||||
#define false 0
|
#define false 0
|
||||||
|
|
||||||
typedef int FLAC__bool;
|
typedef int FLAC__bool;
|
||||||
|
|
||||||
typedef signed char FLAC__int8;
|
typedef signed char FLAC__int8;
|
||||||
typedef unsigned char FLAC__uint8;
|
typedef unsigned char FLAC__uint8;
|
||||||
typedef signed short FLAC__int16;
|
|
||||||
typedef unsigned short FLAC__uint16;
|
#ifdef _MSC_VER
|
||||||
typedef signed int FLAC__int32;
|
typedef __int16 FLAC__int16;
|
||||||
typedef unsigned int FLAC__uint32;
|
typedef __int32 FLAC__int32;
|
||||||
#if defined _WIN32 && !defined __CYGWIN__
|
|
||||||
typedef __int64 FLAC__int64;
|
typedef __int64 FLAC__int64;
|
||||||
|
typedef unsigned __int16 FLAC__uint16;
|
||||||
|
typedef unsigned __int32 FLAC__uint32;
|
||||||
typedef unsigned __int64 FLAC__uint64;
|
typedef unsigned __int64 FLAC__uint64;
|
||||||
#else
|
#else
|
||||||
typedef long long int FLAC__int64;
|
typedef @FLaC__SIZE16@ FLAC__int16;
|
||||||
typedef unsigned long long FLAC__uint64;
|
typedef @FLaC__SIZE32@ FLAC__int32;
|
||||||
|
typedef @FLaC__SIZE64@ FLAC__int64;
|
||||||
|
typedef @FLaC__USIZE16@ FLAC__uint16;
|
||||||
|
typedef @FLaC__USIZE32@ FLAC__uint32;
|
||||||
|
typedef @FLaC__USIZE64@ FLAC__uint64;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
typedef FLAC__uint8 FLAC__byte;
|
typedef FLAC__uint8 FLAC__byte;
|
||||||
typedef float FLAC__real;
|
typedef float FLAC__real;
|
||||||
|
|
||||||
Reference in New Issue
Block a user