blob: 31e56db1520811bfb17f1ae6d4fd3d5ec112635b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#ifndef __INC_PRECOMP_H
#define __INC_PRECOMP_H
/*++
Copyright (c) Realtek Semiconductor Corp. All rights reserved.
Module Name:
HalPrecomp.h
Abstract:
Defined HAL Configure
Major Change History:
When Who What
---------- --------------- -------------------------------
2012-03-23 Filen Create.
--*/
//Avoid Recusive include, confused with Driver
// Only WlanHAL files define
#define WLAN_HAL_INTERNAL_USED
#ifndef __ECOS
#include "PlatformDef.h"
#include "GeneralDef.h"
//Driver Configuration & Input
#include "HalCfg.h"
#include "HalPrecompInc.h"
#else // use relative
#include "Include/PlatformDef.h"
#include "Include/GeneralDef.h"
//Driver Configuration & Input
#include "HalCfg.h"
#include "HalPrecompInc.h"
#endif
#endif //#ifndef __INC_PRECOMP_H
|