

Checkout Information › EApiFetchChkoutChkdOutObjs › Example
Example
#include <eapidef.h>
EAPIRC rc = EAPI_SUCCESSFUL_RC;
CKOID nChkoutId;
LCOUNT lCount, i;
OBJID nArrayObjIds[100];
nChkoutId = 65L;
lCount = 100L;
rc = EApiFetchChkoutChkdOutObjs(nChkoutId,
&lCount,
nArrayObjIds);
if ( rc > EAPI_MAXIMUM_COUNT_REACHED_RC)
printf("Error in EApiFetchChkoutChkdOutObjs\n");
else
{
printf("Count = %ld\n", lCount);
for (i=0; i < lCount; i++)
printf("Object Id[%ld] = %ld\n", i, nArrayObjIds[i]);
}
Copyright © 2014 CA.
All rights reserved.
 
|
|