#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 );
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. |
TRUE if the BSSIDs are identical, but FALSE if they are not identical.
Compares two BSSIDs. WM_IsBssidEqual16
can be used only if both compared addresses are aligned to 16-bit boundaries. This will improve performance somewhat.
02/10/2005 Added WM_IsBssidEqual16
11/10/2004 Initial version.