mirror of
https://github.com/rvtr/TwlToolsRED.git
synced 2025-10-31 06:41:18 -04:00
53 lines
1.5 KiB
C
53 lines
1.5 KiB
C
/*---------------------------------------------------------------------------*
|
|
Project: TwlWiFi - demos - netconnect
|
|
File: ap_info.h
|
|
|
|
Copyright 2005,2006 Nintendo. All rights reserved.
|
|
|
|
These coded instructions, statements, and computer programs contain
|
|
proprietary information of Nintendo of America Inc. and/or Nintendo
|
|
Company Ltd., and are protected by Federal copyright law. They may
|
|
not be disclosed to third parties or copied or duplicated in any form,
|
|
in whole or in part, without the prior written consent of Nintendo.
|
|
|
|
$Date:: 2007-10-30#$
|
|
$Rev: 74 $
|
|
$Author: adachi_hiroaki $
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef SHARED_AP_INFO_H_
|
|
#define SHARED_AP_INFO_H_
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
#endif
|
|
|
|
/*===========================================================================*/
|
|
#include <nitroWiFi/wcm.h>
|
|
|
|
// AP 情報構造体 型定義
|
|
typedef struct WcmControlApInfo
|
|
{
|
|
u8 bssId[WCM_BSSID_SIZE];
|
|
WCMWepDesc wepDesc;
|
|
u8 essId[WCM_ESSID_SIZE];
|
|
u32 auth_option;
|
|
|
|
} WcmControlApInfo;
|
|
|
|
// 固定 AP 情報の参照
|
|
extern const WcmControlApInfo constApInfo;
|
|
|
|
/*===========================================================================*/
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern "C" */
|
|
#endif
|
|
|
|
#endif /* SHARED_AP_INFO_H_ */
|
|
|
|
/*---------------------------------------------------------------------------*
|
|
End of file
|
|
*---------------------------------------------------------------------------*/
|