blob: 24a8e1c38ff13c26390f39cb4bc657260c9e516f [file] [log] [blame]
Jeff Johnson295189b2012-06-20 16:38:30 -07001/*
2 * Copyright (c) 2012, Code Aurora Forum. All rights reserved.
3 *
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( __WLAN_QCT_OS_TYPE_H )
23#define __WLAN_QCT_OS_TYPE_H
24
25/**=========================================================================
26
27 \file wlan_qct_pal_type.h
28
29 \brief define basi types PAL exports. wpt = (Wlan Pal Type)
30
31 Definitions for platform dependent. This is for Linux/Android
32
33 Copyright 2010 (c) Qualcomm, Incorporated. All Rights Reserved.
34
35 Qualcomm Confidential and Proprietary.
36
37 ========================================================================*/
38
39
40typedef unsigned long wpt_uint32;
41
42typedef signed long wpt_int32;
43
44typedef unsigned short wpt_uint16;
45
46typedef signed short wpt_int16;
47
48typedef unsigned char wpt_uint8;
49
50typedef wpt_uint8 wpt_byte;
51
52typedef signed char wpt_int8;
53
54typedef wpt_uint8 wpt_boolean;
55
56typedef unsigned long long wpt_uint64;
57
58typedef long long wpt_int64;
59
60#define WPT_INLINE __inline__
61#define WPT_STATIC static
62
63
64#endif // __WLAN_QCT_OS_TYPE_H