blob: 4a0083c65113ed5c18f7ea5e98c9681679410710 [file] [log] [blame]
Vipin Mehta30295c82010-09-01 12:06:33 -07001//------------------------------------------------------------------------------
2// <copyright file="a_config.h" company="Atheros">
3// Copyright (c) 2004-2010 Atheros Corporation. All rights reserved.
4//
5//
6// Permission to use, copy, modify, and/or distribute this software for any
7// purpose with or without fee is hereby granted, provided that the above
8// copyright notice and this permission notice appear in all copies.
9//
10// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17//
18//
19//------------------------------------------------------------------------------
20//==============================================================================
21// This file contains software configuration options that enables
22// specific software "features"
23//
24// Author(s): ="Atheros"
25//==============================================================================
26#ifndef _A_CONFIG_H_
27#define _A_CONFIG_H_
28
29#ifdef UNDER_NWIFI
30#include "../os/windows/include/config.h"
31#endif
32
33#ifdef ATHR_CE_LEGACY
34#include "../os/windows/include/config.h"
35#endif
36
37#if defined(__linux__) && !defined(LINUX_EMULATION)
38#include "../os/linux/include/config_linux.h"
39#endif
40
41#ifdef REXOS
42#include "../os/rexos/include/common/config_rexos.h"
43#endif
44
45#ifdef WIN_NWF
46#include "../os/windows/include/win/config_win.h"
47#endif
48
49#ifdef THREADX
50#include "../os/threadx/include/common/config_threadx.h"
51#endif
52
53#endif