Previous Topic: Related FunctionsNext Topic: EApiFetchObjectAncestryInfo


Example

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