1 /*---------------------------------------------------------------------------* 2 Project: RevolutionSDK Extensions - libraries - wd 3 File: WDApi.h 4 5 Copyright 2006 Nintendo. All rights reserved. 6 7 These coded instructions, statements, and computer programs contain 8 proprietary information of Nintendo of America Inc. and/or Nintendo 9 Company Ltd., and are protected by Federal copyright law. They may 10 not be disclosed to third parties or copied or duplicated in any form, 11 in whole or in part, without the prior written consent of Nintendo. 12 *---------------------------------------------------------------------------*/ 13 14 #ifndef WD_WDAPI_H_ 15 #define WD_WDAPI_H_ 16 17 #ifdef __cplusplus 18 extern "C" { 19 #endif 20 /*===========================================================================*/ 21 22 #include <revolution/wd/WDConst.h> 23 #include <revolution/wd/WDTypes.h> 24 25 typedef struct WDScanParam_ 26 { 27 u16 channelBitmap; 28 u16 maxChannelTime; 29 u8 bssid[ WD_SIZE_BSSID ]; 30 u16 scanType; 31 32 u16 ssidLength; 33 u8 ssid[ WD_SIZE_SSID ]; 34 u8 ssidMatchMask[ WD_SIZE_SSID ]; 35 36 } __attribute__((packed)) WDScanParam; 37 38 u8 WDGetRadioLevel( const WDBssDesc* bssDesc ); 39 40 41 /*===========================================================================*/ 42 #ifdef __cplusplus 43 } /* extern "C" */ 44 #endif /* __cplusplus */ 45 46 #endif /* WD_WDAPI_H_ */ 47 48 /*---------------------------------------------------------------------------* 49 $Log: WDApi.h,v $ 50 Revision 1.3 2006/09/27 09:34:41 terui 51 Added WDGetRadioLevel() prototype. 52 53 Revision 1.2 2006/08/30 00:05:39 adachi_hiroaki 54 Added newlines to end of file to suppress gcc warnings 55 56 Revision 1.1 2006/08/29 07:01:55 yoshioka_yasuhiro 57 Initial Commit. 58 59 *---------------------------------------------------------------------------*/ 60