edmiPackDate
EdmiError edmiPackDate(EdmiDate *date,
EdmiPackedDate *packedDate);
Converts a time and date in EdmiDate format to an EdmiPackedDate format. The date from January 1, 1990 to December 31, 2053 can be represented in EdmiPackedDate format.
Arguments
Type | Name | Comment |
EdmiDate | date | The date and time value to in EdmiDate format that should be packed. |
EdmiPackedDate | packedDate | Address of the variable that will receive the given <date> in EdmiPackedDate format. |
Return Value
Options
Example
EdmiError rstat;
EdmiDate date;
EdmiPackedDate packedDate;
. . .
if (rstat = edmiPackDate (&date, &packedDate)) {
/* Error in operation */
printf("\nError: %s in edmiPackDate \n",
edmiGetErrorText(rstat));
goto error;
}
. . .
See also
Filter by label
There are no items with the selected labels at this time.