Truxton delete tag

From truxwiki.com
Revision as of 16:35, 3 April 2025 by Sam (talk | contribs) (Created page with "This deletes a tag from Truxton. =Syntax= <source lang="C"> void truxton_delete_tag( uint64_t truxton_handle, char const * tag_name ); </source> =Parameters= ==<code>truxton...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This deletes a tag from Truxton.

Syntax

void truxton_delete_tag( uint64_t truxton_handle, char const * tag_name );

Parameters

truxton_handle

The Truxton instance where this tag exists. This handle comes from calling truxton_create().

tag_name

The name of the tag to delete.

Sample

void destroy_gang( void )
{
   uint64_t truxton = truxton_create();

   truxton_delete_tag( truxton, "Crossfire Razor" );

   truxton_destroy( truxton );
}