blob: 0fa0964d4131bf9f03756e33b808fb1532338991 [file] [log] [blame]
/*
* Copyright (c) 2012-2013 Qualcomm Atheros, Inc.
* All Rights Reserved.
* Qualcomm Atheros Confidential and Proprietary.
*/
/*===========================================================================
*
* @file: wlan_defs.h
*
* @brief: This file defines the common typedefs
*
* @author: Gagan Jain
*
* Copyright (C) 2010, Qualcomm, Inc.
* All rights reserved.
*
*=========================================================================*/
#ifndef __WLAN_DEFS_H__
#define __WLAN_DEFS_H__
/*-------------------------------------------------------------------------
Include Files
-------------------------------------------------------------------------*/
#include "wlan_qct_pal_type.h"
/*----------------------------------------------------------------------------
* Preprocessor Definitions and Constants
* -------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
* Type Declarations
* -------------------------------------------------------------------------*/
typedef wpt_uint32 uint32; /* Unsigned 32 bit value */
typedef wpt_uint16 uint16; /* Unsigned 16 bit value */
typedef wpt_uint8 uint8; /* Unsigned 8 bit value */
typedef wpt_int32 int32; /* Signed 32 bit value */
typedef wpt_int16 int16; /* Signed 16 bit value */
typedef wpt_int8 int8; /* Signed 8 bit value */
typedef wpt_int64 int64; /* Signed 64 bit value */
typedef wpt_uint64 uint64; /* Unsigned 64 bit value */
typedef wpt_byte byte; /* byte type */
typedef wpt_boolean boolean; /* Boolean Type */
#endif //__WLAN_DEFS_H__