2000-12-10 04:09:52 +00:00
|
|
|
/* libFLAC - Free Lossless Audio Coder library
|
2001-01-16 20:17:53 +00:00
|
|
|
* Copyright (C) 2000,2001 Josh Coalson
|
2000-12-10 04:09:52 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef FLAC__ORDINALS_H
|
|
|
|
#define FLAC__ORDINALS_H
|
|
|
|
|
|
|
|
#ifdef bool
|
|
|
|
#undef bool
|
|
|
|
#endif
|
|
|
|
#ifdef true
|
|
|
|
#undef true
|
|
|
|
#endif
|
|
|
|
#ifdef false
|
|
|
|
#undef false
|
|
|
|
#endif
|
|
|
|
#ifdef byte
|
|
|
|
#undef byte
|
|
|
|
#endif
|
|
|
|
#ifdef int16
|
|
|
|
#undef int16
|
|
|
|
#endif
|
|
|
|
#ifdef uint16
|
|
|
|
#undef uint16
|
|
|
|
#endif
|
|
|
|
#ifdef int32
|
|
|
|
#undef int32
|
|
|
|
#endif
|
|
|
|
#ifdef uint32
|
|
|
|
#undef uint32
|
|
|
|
#endif
|
|
|
|
#ifdef int64
|
|
|
|
#undef int64
|
|
|
|
#endif
|
|
|
|
#ifdef uint64
|
|
|
|
#undef uint64
|
|
|
|
#endif
|
|
|
|
#ifdef real
|
|
|
|
#undef real
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define true 1
|
|
|
|
#define false 0
|
|
|
|
|
|
|
|
typedef int bool;
|
|
|
|
typedef unsigned char byte;
|
|
|
|
typedef short int16;
|
|
|
|
typedef unsigned short uint16;
|
|
|
|
typedef int int32;
|
|
|
|
typedef unsigned int uint32;
|
|
|
|
#if defined _WIN32 && !defined __CYGWIN__
|
|
|
|
typedef __int64 int64;
|
|
|
|
typedef unsigned __int64 uint64;
|
|
|
|
#else
|
|
|
|
typedef long long int int64;
|
|
|
|
typedef unsigned long long uint64;
|
|
|
|
#endif
|
|
|
|
typedef double real;
|
|
|
|
|
|
|
|
#endif
|