Truxton communication set received
Jump to navigation
Jump to search
Sets the date when the message was received.
This corresponds to the [Received] column of the [Message] table.
Syntax
void truxton_communication_set_received( uint64_t communication_handle, uint64_t ticks );
Parameters
communication_handle
The handle created by the truxton_communication_create call.
ticks
The date and time in FILETIME ticks.
Sample
void set_received_to_now( uint64_t communication_handle )
{
FILETIME now;
GetSystemTimePreciseAsFileTime( &now );
ULARGE_INTEGER ticks;
ticks.LowPart = now.dwLowDateTime;
ticks.HighPart = now.dwHighDateTime;
truxton_communication_set_received( communication_handle , ticks.QuadPart );
}