OpenSLES_Platform.h revision a3080daa505f91df51a808c85ddb37c48745bf7c
1/* 2 * Copyright (c) 2007-2009 The Khronos Group Inc. 3 * 4 * Permission is hereby granted, free of charge, to any person obtaining a copy of 5 * this software and /or associated documentation files (the "Materials "), to 6 * deal in the Materials without restriction, including without limitation the 7 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 8 * sell copies of the Materials, and to permit persons to whom the Materials are 9 * furnished to do so, subject to 10 * the following conditions: 11 * 12 * The above copyright notice and this permission notice shall be included 13 * in all copies or substantial portions of the Materials. 14 * 15 * THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 * OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS IN THE 21 * MATERIALS. 22 * 23 * OpenSLES_Platform.h - OpenSL ES version 1.0 24 * 25 */ 26 27/****************************************************************************/ 28/* NOTE: This file contains definitions for the base types and the */ 29/* SLAPIENTRY macro. This file **WILL NEED TO BE EDITED** to provide */ 30/* the correct definitions specific to the platform being used. */ 31/****************************************************************************/ 32 33#ifndef _OPENSLES_PLATFORM_H_ 34#define _OPENSLES_PLATFORM_H_ 35 36typedef unsigned char sl_uint8_t; 37typedef signed char sl_int8_t; 38typedef unsigned short sl_uint16_t; 39typedef signed short sl_int16_t; 40typedef unsigned long sl_uint32_t; 41typedef signed long sl_int32_t; 42typedef long long sl_int64_t; 43 44#ifndef SLAPIENTRY 45#ifdef __GNUC__ 46#define SLAPIENTRY /* override per-platform */ 47#else 48#define SLAPIENTRY __declspec(dllimport) 49#endif 50#endif 51 52#endif /* _OPENSLES_PLATFORM_H_ */ 53