WM_IsBssidEqual

C Specification

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

static inline
BOOL WM_IsBssidEqual( const u8* idp1 , const u8* idp2 );

static inline
BOOL WM_IsBssidEqual16( const u8* idp1 , const u8* idp2 );

Arguments

idp1 Designates the pointer to the BSSID to compare. With WM_IsBssidEqual16, this address must be aligned to a 16-bit boundary.
idp2 Designates the pointer to the BSSID to compare. With WM_IsBssidEqual16, this address must be aligned to a 16-bit boundary.

Return Values

TRUE if the BSSIDs are identical, but FALSE if they are not identical.

Description

Compares two BSSIDs. WM_IsBssidEqual16 can be used only if both compared addresses are aligned to 16-bit boundaries. This will improve performance somewhat.

See Also

WM_CopyBssid, WM_CopyBssid16

Revision History

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