Previous Topic: Related FunctionsNext Topic: EApiFetchModelLastUpdateInfo


Example

#include <eapidef.h>
EAPIRC rc = EAPI_SUCCESSFUL_RC;
MODELID nModelId;
DATE szDate;
TIME szTime;
USERID szUserId;
nModelId = 9L;
rc = EApiFetchModelCreateInfo(nModelId,
szDate,
szTime,
szUserId);
if ( rc != EAPI_SUCCESSFUL_RC )
printf("Error in EApiFetchModelCreateInfo\n");
else
{
printf("Date = %s\n", szDate);
printf("Time = %s\n", szTime);
printf("UserId = %s\n", szUserId);
}