blob: 057c8cabe0f3d98818dc04bb9ce73ea36f500d93 [file] [log] [blame]
Jeff Johnson295189b2012-06-20 16:38:30 -07001/*
Jeff Johnson32d95a32012-09-10 13:15:23 -07002 * Copyright (c) 2012, The Linux Foundation. All rights reserved.
Jeff Johnson295189b2012-06-20 16:38:30 -07003 *
4 * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
5 *
6 *
7 * Permission to use, copy, modify, and/or distribute this software for
8 * any purpose with or without fee is hereby granted, provided that the
9 * above copyright notice and this permission notice appear in all
10 * copies.
11 *
12 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
13 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
14 * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
15 * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
16 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
17 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
18 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
19 * PERFORMANCE OF THIS SOFTWARE.
20 */
21
22#if !defined( __LEGACYPALTYPES_H__ )
23#define __LEGACYPALTYPES_H__
24
25/*==========================================================================
26 *
27 * @file: halLegacyPalTypes.h
28 *
29 * @brief: Exports and types for the Platform Abstraction Layer typedefs.
30 *
31 * @author: Kumar Anand
32 *
33 * Copyright (C) 2010, Qualcomm, Inc.
34 * All rights reserved.
35 *
36 *=========================================================================*/
37
38#include "wlan_defs.h"
39
40/* Common type definitions */
41typedef uint8 tANI_U8;
42typedef int8 tANI_S8;
43typedef uint16 tANI_U16;
44typedef int16 tANI_S16;
45typedef uint32 tANI_U32;
46typedef int32 tANI_S32;
47
48#ifndef BUILD_QWPTTSTATIC
49typedef uint64 tANI_U64;
50#endif
51
52typedef byte tANI_BYTE;
53typedef boolean tANI_BOOLEAN;
54typedef uint32 tANI_TIMESTAMP;
55
56#endif /*__LEGACYPALTYPES_H__*/