Previous Topic: Related FunctionsNext Topic: EApiCountSubsetsInModel


Example

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