Return the number of setups available to this user.
Syntax
CAmvConn* amvConn;
i = amvConn->Setups->Number()
Data Type
int
Example
List the IDs of the available setups.
amvConn->SetupList();
for (i = 0; i < amvConn->Setups->Number(); i++)
{
_tprintf(_T("%s\n"), amvConn->Setups->Setup(i));
}
CAmvSetupList class member overview. |