<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://truxwiki.com/index.php?action=history&amp;feed=atom&amp;title=Truxton_message_participant_get_name</id>
	<title>Truxton message participant get name - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://truxwiki.com/index.php?action=history&amp;feed=atom&amp;title=Truxton_message_participant_get_name"/>
	<link rel="alternate" type="text/html" href="https://truxwiki.com/index.php?title=Truxton_message_participant_get_name&amp;action=history"/>
	<updated>2026-09-09T15:57:11Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.34.1</generator>
	<entry>
		<id>https://truxwiki.com/index.php?title=Truxton_message_participant_get_name&amp;diff=10795&amp;oldid=prev</id>
		<title>Sam: Created page with &quot;This retrieves the name portion of the participant address.  =Syntax= &lt;source lang=&quot;C&quot;&gt; void truxton_message_participant_get_name( uint64_t participant_handle, char * buffer,...&quot;</title>
		<link rel="alternate" type="text/html" href="https://truxwiki.com/index.php?title=Truxton_message_participant_get_name&amp;diff=10795&amp;oldid=prev"/>
		<updated>2026-02-19T10:46:20Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;This retrieves the name portion of the participant address.  =Syntax= &amp;lt;source lang=&amp;quot;C&amp;quot;&amp;gt; void truxton_message_participant_get_name( uint64_t participant_handle, char * buffer,...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;This retrieves the name portion of the participant address.&lt;br /&gt;
&lt;br /&gt;
=Syntax=&lt;br /&gt;
&amp;lt;source lang=&amp;quot;C&amp;quot;&amp;gt;&lt;br /&gt;
void truxton_message_participant_get_name( uint64_t participant_handle, char * buffer, uint64_t buffer_size );&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Parameters=&lt;br /&gt;
==&amp;lt;code&amp;gt;participant_handle&amp;lt;/code&amp;gt;==&lt;br /&gt;
This handle comes from calling &amp;lt;code&amp;gt;[[truxton_message_participant_create]]()&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==&amp;lt;code&amp;gt;buffer&amp;lt;/code&amp;gt;==&lt;br /&gt;
The address of where to put the string.&lt;br /&gt;
&lt;br /&gt;
==&amp;lt;code&amp;gt;buffer_size&amp;lt;/code&amp;gt;==&lt;br /&gt;
The number of bytes available in the buffer.&lt;br /&gt;
&lt;br /&gt;
=Sample=&lt;br /&gt;
&amp;lt;source lang=&amp;quot;C&amp;quot; highlight=&amp;quot;34&amp;quot;&amp;gt;&lt;br /&gt;
void dump(uint64_t participant_handle)&lt;br /&gt;
{&lt;br /&gt;
   char string_value[512];&lt;br /&gt;
&lt;br /&gt;
   uint64_t integer = 0;&lt;br /&gt;
&lt;br /&gt;
   truxton_message_participant_get_id( participant_handle, string_value, sizeof(string_value) );&lt;br /&gt;
   printf( &amp;quot;ID: %s\n&amp;quot;, string_value );&lt;br /&gt;
&lt;br /&gt;
   integer_value = truxton_message_participant_get_combined_id( participant_handle );&lt;br /&gt;
   printf( &amp;quot;Combined ID: %&amp;quot; PRIu64 &amp;quot;\n&amp;quot;, integer_value );&lt;br /&gt;
&lt;br /&gt;
   truxton_message_participant_get_combined_guid( participant_handle, string_value, sizeof(string_value) );&lt;br /&gt;
   printf( &amp;quot;Combined GUID: %s\n&amp;quot;, string_value );&lt;br /&gt;
&lt;br /&gt;
   truxton_message_participant_get_account( participant_handle, string_value, sizeof(string_value) );&lt;br /&gt;
   printf( &amp;quot;Account: %s\n&amp;quot;, string_value );&lt;br /&gt;
&lt;br /&gt;
   truxton_message_participant_get_file_id( participant_handle, string_value, sizeof(string_value) );&lt;br /&gt;
   printf( &amp;quot;File ID: %s\n&amp;quot;, string_value );&lt;br /&gt;
&lt;br /&gt;
   truxton_message_participant_get_media_id( participant_handle, string_value, sizeof(string_value) );&lt;br /&gt;
   printf( &amp;quot;Media ID: %s\n&amp;quot;, string_value );&lt;br /&gt;
&lt;br /&gt;
   truxton_message_participant_get_message_address_id( participant_handle, string_value, sizeof(string_value) );&lt;br /&gt;
   printf( &amp;quot;Message Address ID: %s\n&amp;quot;, string_value );&lt;br /&gt;
&lt;br /&gt;
   truxton_message_participant_get_message_id( participant_handle, string_value, sizeof(string_value) );&lt;br /&gt;
   printf( &amp;quot;Message ID: %s\n&amp;quot;, string_value );&lt;br /&gt;
&lt;br /&gt;
   truxton_message_participant_get_server( participant_handle, string_value, sizeof(string_value) );&lt;br /&gt;
   printf( &amp;quot;Server: %s\n&amp;quot;, string_value );&lt;br /&gt;
&lt;br /&gt;
   truxton_message_participant_get_name( participant_handle, string_value, sizeof(string_value) );&lt;br /&gt;
   printf( &amp;quot;Name: %s\n&amp;quot;, string_value );&lt;br /&gt;
&lt;br /&gt;
   integer_value = truxton_message_participant_get_type( participant_handle );&lt;br /&gt;
   printf( &amp;quot;Type: %&amp;quot; PRIu64 &amp;quot;\n&amp;quot;, integer_value );&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Sam</name></author>
		
	</entry>
</feed>