Truxton create tag

From truxwiki.com
Jump to navigation Jump to search

This creates a new type of tag that you can use in your investigation. It makes an entry in the [Tag] table.

Syntax

void truxton_create_tag( uint64_t truxton_handle, char const * tag_name, char const * tag_description );

Parameters

truxton_handle

The handle created by the truxton_create call.

tag_name

The name of the tag as it will appear in the user interface. This is the string you will use to tag something (like a file or event) in Truxton. This corresponds to the [Name] column of the [Tag] table.

tag_description

A longer description of the tag. This corresponds to the [Description] column of the [Tag] table.

Sample

void prepare_case( uint64_t truxton )
{
   truxton_tag_create( truxton, "FBI", "Actions taken by FBI" );
   truxton_tag_create( truxton, "Leak", "Information leaked to the press" );
}