CAmvSetupList::Number()

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));

}

More information

CAmvSetupList class member overview.