WM_CopyBssid

C Specification

#include <nitro/wm/ARM9/wm_api.h>

static inline
void WM_CopyBssid( const u8* src , u8* dst );
static inline
void WM_CopyBssid16( const u8* src , u8* dst );

Arguments

src Designates the pointer to the BSSID of the copy source. With WM_CopyBssid16, this address must be aligned to a 16-bit boundary.
dst Designates the pointer to the BSSID of the copy destination. With WM_CopyBssid16, this address must be aligned to a 16-bit boundary.

Return Values

None.

Description

Copies the BSSID. WM_CopyBssid16 can be used only if both compared addresses are aligned to 16-bit boundaries. This will improve performance somewhat.

See Also

WM_IsBssidEqual, WM_IsBssidEqual16

Revision History

02/10/2005 Added WM_IsBssidEqual16
11/10/2004 Initial version.