Truxton url add note

From truxwiki.com
Revision as of 09:10, 1 October 2022 by Sam (talk | contribs) (Created page with "This will add a note to the URL. It will cause a record to be created in the <code>[InvestigatorNote]</code> table. =Syntax= <source lang="C"> int truxton_url_add_note( uint6...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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." );
}