Previous Topic: Related FunctionsNext Topic: EApiFetchModelParentInfo


Example

EAPIRC rc = EAPI_SUCCESSFUL_RC;
MODELID nModelId;
DATE szDate;
TIME szTime;
USERID szUserId;
nModelId = 9L;
if ( rc != EAPI_SUCCESSFUL_RC )
printf("Error in EApiFetchModelLastUpdateInfo\n");
else
{
rc = EApiFetchModelLastUpdateInfo(nModelId,
szDate,
szTime,
szUserId);
printf("Date = %s\n", szDate);
printf("Time = %s\n", szTime);
printf("UserId = %s\n", szUserId);
}