From 2ab3d99967d68c79351fe2a3df22c445447e3010 Mon Sep 17 00:00:00 2001 From: Michał Cichoń Date: Tue, 15 Nov 2011 22:28:48 +0100 Subject: Initial import. --- libao/src/include/ao/os_types.h | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 libao/src/include/ao/os_types.h (limited to 'libao/src/include/ao/os_types.h') diff --git a/libao/src/include/ao/os_types.h b/libao/src/include/ao/os_types.h new file mode 100644 index 0000000..8a56553 --- /dev/null +++ b/libao/src/include/ao/os_types.h @@ -0,0 +1,39 @@ +/* + * + * os_types.h + * + * Original Copyright (C) Aaron Holtzman - May 1999 + * Modifications Copyright (C) Stan Seibert - July 2000 + * + * This file is part of libao, a cross-platform audio output library. See + * README for a history of this source code. + * + * libao is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2, or (at your option) + * any later version. + * + * libao 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with GNU Make; see the file COPYING. If not, write to + * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ + +/* Set type sizes for this platform (Requires Autoconf) */ + +#ifndef __OS_TYPES_H__ +#define __OS_TYPES_H__ + +typedef unsigned char uint_8; +typedef unsigned short uint_16; +typedef unsigned int uint_32; +typedef signed char sint_8; +typedef signed short sint_16; +typedef signed int sint_32; + +#endif /* __OS_TYPES_H__ */ -- cgit v1.2.3