Truxton url add note

From truxwiki.com
Jump to navigation Jump to search

This will add a note to the URL. It will cause a record to be created in the [InvestigatorNote] table.

Syntax

int truxton_url_add_note( uint64_t url_handle, char const * text );

Parameters

url_handle

The handle to the URL created by calling truxton_url_create(), or truxton_file_create_url().

text

The contents of the note.

Return value

A non-zero value on success, zero on failure.

Sample

void this_is_ce( uint64_t url_handle )
{
   truxton_url_add_note( url_handle, "This meets the criteria for CE." );
}