blob: 46d5cfed9710b5c62adbb35a1536e7b47b0110ef [file] [log] [blame]
Jeff Johnson295189b2012-06-20 16:38:30 -07001/*
Gopichand Nakkala92f07d82013-01-08 21:16:34 -08002 * Copyright (c) 2012-2013, The Linux Foundation. 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/*
Jeff Johnson32d95a32012-09-10 13:15:23 -070022 * Copyright (c) 2012, The Linux Foundation. All rights reserved.
Jeff Johnson295189b2012-06-20 16:38:30 -070023 *
24 * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
25 *
26 *
27 * Permission to use, copy, modify, and/or distribute this software for
28 * any purpose with or without fee is hereby granted, provided that the
29 * above copyright notice and this permission notice appear in all
30 * copies.
31 *
32 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
33 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
34 * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
35 * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
36 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
37 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
38 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
39 * PERFORMANCE OF THIS SOFTWARE.
40 */
41
42/*===========================================================================
43 *
44 * @file: wlan_defs.h
45 *
46 * @brief: This file defines the common typedefs
47 *
48 * @author: Gagan Jain
49 *
50 * Copyright (C) 2010, Qualcomm, Inc.
51 * All rights reserved.
52 *
53 *=========================================================================*/
54
55#ifndef __WLAN_DEFS_H__
56#define __WLAN_DEFS_H__
57
58/*-------------------------------------------------------------------------
59 Include Files
60-------------------------------------------------------------------------*/
61#include "wlan_qct_pal_type.h"
62
63/*----------------------------------------------------------------------------
64 * Preprocessor Definitions and Constants
65 * -------------------------------------------------------------------------*/
66/*----------------------------------------------------------------------------
67 * Type Declarations
68 * -------------------------------------------------------------------------*/
69typedef wpt_uint32 uint32; /* Unsigned 32 bit value */
70
71typedef wpt_uint16 uint16; /* Unsigned 16 bit value */
72
73typedef wpt_uint8 uint8; /* Unsigned 8 bit value */
74
75typedef wpt_int32 int32; /* Signed 32 bit value */
76
77typedef wpt_int16 int16; /* Signed 16 bit value */
78
79typedef wpt_int8 int8; /* Signed 8 bit value */
80
81typedef wpt_int64 int64; /* Signed 64 bit value */
82
83typedef wpt_uint64 uint64; /* Unsigned 64 bit value */
84
85typedef wpt_byte byte; /* byte type */
86
87typedef wpt_boolean boolean; /* Boolean Type */
88
89#endif //__WLAN_DEFS_H__