Previous Topic: Related FunctionsNext Topic: EApiCountAllUsers


Example

#include <eapidef.h>
EAPIRC rc = EAPI_SUCCESSFUL_RC;
OBJID nObjectId;
ASCTYPECODE nAscTypeCode;
LCOUNT lCount;
nObjectId = 70900L;
nAscTypeCode = 175;
rc = EApiCountCardManyAsc((OBJID) nObjectId,
(ASCTYPECODE) nAscTypeCode,
(PLCOUNT) &lCount);
if ( rc != EAPI_SUCCESSFUL_RC )
printf("Error in EApiCountCardManyAsc\n");
else
printf("Count = %ld\n", lCount);