#include <dwc.h>
u32 DWC_GetAIDBitmap( void );
Gets the AID bitmap of the connected host.
AID uses a numerical value starting with 0 (the number of devices making up the network minus 1) for the identification number of each DS within the mesh type network. For example, if four people have completed matchmaking, devices 0, 1, 2, and 3 will be present, and the bitmap will be 0xf. If device 1 leaves the network, the remaining devices will be 0, 2, and 3, and the bitmap will be 0xd.
For server-client matchmaking, the AID for the server DS will always be 0.
Use the DWC_GetAIDList
function to get the AID as an array of numeric values.
None.
AID bitmap of the connected host.
2006/02/22 Added note regarding the AID for server-client matchmaking
12/16/2005 Initial version