blob: f0350d859d44852447abb9e7b210b1901726c7a8 [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/*===========================================================================
23 *
24 * @file: wlan_defs.h
25 *
26 * @brief: This file defines the common typedefs
27 *
28 * @author: Gagan Jain
29 *
30 * Copyright (C) 2010, Qualcomm, Inc.
31 * All rights reserved.
32 *
33 *=========================================================================*/
34
35#ifndef __WLAN_DEFS_H__
36#define __WLAN_DEFS_H__
37
38/*-------------------------------------------------------------------------
39 Include Files
40-------------------------------------------------------------------------*/
41#include "wlan_qct_pal_type.h"
42
43/*----------------------------------------------------------------------------
44 * Preprocessor Definitions and Constants
45 * -------------------------------------------------------------------------*/
46/*----------------------------------------------------------------------------
47 * Type Declarations
48 * -------------------------------------------------------------------------*/
49typedef wpt_uint32 uint32; /* Unsigned 32 bit value */
50
51typedef wpt_uint16 uint16; /* Unsigned 16 bit value */
52
53typedef wpt_uint8 uint8; /* Unsigned 8 bit value */
54
55typedef wpt_int32 int32; /* Signed 32 bit value */
56
57typedef wpt_int16 int16; /* Signed 16 bit value */
58
59typedef wpt_int8 int8; /* Signed 8 bit value */
60
61typedef wpt_int64 int64; /* Signed 64 bit value */
62
63typedef wpt_uint64 uint64; /* Unsigned 64 bit value */
64
65typedef wpt_byte byte; /* byte type */
66
67typedef wpt_boolean boolean; /* Boolean Type */
68
69#endif //__WLAN_DEFS_H__