/* * Copyright (c) 2010 Broadcom Corporation * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #ifndef _TYPEDEFS_H_ #define _TYPEDEFS_H_ #include /* * Infer the compile environment based on preprocessor symbols and pragmas. * Override type definitions as needed, and include configuration-dependent * header files to define types. */ #if defined(__x86_64__) #define TYPEDEF_UINTPTR typedef unsigned long long int uintptr; #endif #define TYPEDEF_UINT /* * Default Typedefs */ /* define uint */ #ifndef TYPEDEF_UINT typedef unsigned int uint; #endif /* define [u]int16/32/64, uintptr */ #ifndef TYPEDEF_UINT32 typedef unsigned int uint32; #endif #ifndef TYPEDEF_UINTPTR typedef unsigned int uintptr; #endif #ifndef TYPEDEF_INT16 typedef signed short int16; #endif #ifndef TYPEDEF_INT32 typedef signed int int32; #endif /* define macro values */ #ifndef FALSE #define FALSE 0 #endif #ifndef TRUE #define TRUE 1 /* TRUE */ #endif #ifndef OFF #define OFF 0 #endif #ifndef ON #define ON 1 /* ON = 1 */ #endif #define AUTO (-1) /* Auto = -1 */ #undef TYPEDEF_UINT #undef TYPEDEF_UINT32 #undef TYPEDEF_UINTPTR #undef TYPEDEF_INT16 #undef TYPEDEF_INT32 /* * Including the bcmdefs.h here, to make sure everyone including typedefs.h * gets this automatically */ #include #endif /* _TYPEDEFS_H_ */