Previous Topic: Related FunctionsNext Topic: EApiCountUsersGrpsSubsetAuth


Example

#include <eapidef.h>
EAPIRC rc = EAPI_SUCCESSFUL_RC;
MODELID nModelId;
LCOUNT lCount;
nModelId = 9L;
rc = EApiCountUsersGrpsModelAuth((MODELID) nModelId,
(PLCOUNT) &lCount);
if ( rc != EAPI_SUCCESSFUL_RC )
printf("Error in EApiCountUsersGrpsModelAuth\n");
else
printf("Count = %ld\n", lCount);