Previous Topic: Related FunctionsNext Topic: Checkout Information


Example

#include <eapidef.h>
EAPIRC rc = EAPI_SUCCESSFUL_RC;
SUBSETID nSubsetId;
CKOID nChkoutId;
DATE szDate;
TIME szTime;
USERID szUserId;
nSubsetId = 2L;
rc = EApiFetchSubsetChkoutInfo(nSubsetId,
&nChkoutId,
szDate,
szTime,
szUserId);
if ( rc != EAPI_SUCCESSFUL_RC )
printf("Error in EApiFetchSubsetChkoutInfo\n");
else
{
printf("Checkout Id = %ld\n", nChkoutId);
printf("Date = %s\n", szDate);
printf("Time = %s\n", szTime);
printf("UserId = %s\n", szUserId);
}