Truxton communication set subject

From truxwiki.com
Revision as of 08:19, 19 May 2023 by Sam (talk | contribs) (Created page with "Sets the name of this child file object. This corresponds to the <code>[Text]</code> column of the <code>[MessageSubject]</code> table. =Syntax= <source lang="C"> void truxto...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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" );
}