Truxton communication set subject

From truxwiki.com
Jump to navigation Jump to search

Sets the name of this child file object. This corresponds to the [Text] column of the [MessageSubject] table.

Syntax

void truxton_communication_set_subject( uint64_t communication_handle, char const * subject );

Parameters

communication_handle

The handle created by the truxton_communication_create call.

subject

The subject of the message.

Sample

void set_subject( uint64_t communication_handle )
{
   truxton_communication_set_subject( communication_handle, "These are the times that try mens souls" );
}