Previous Topic: Related FunctionsNext Topic: EApiCountChkoutChkdOutObjs


Example

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