Truxton delete tag
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 );
}