Truxton create everything hashset

From truxwiki.com
Revision as of 11:25, 1 June 2021 by Sam (talk | contribs) (Created page with "This will create a hash set file of every unique hash in Truxton. =Syntax= <source lang="C"> void truxton_create_everything_hashset( uint64_t truxton_handle, cha...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This will create a hash set file of every unique hash in Truxton.

Syntax

void truxton_create_everything_hashset( uint64_t truxton_handle, char const * filename );

Parameters

truxton_handle

The handle created by the truxton_create call.

filename

The name of the file where the hashes will be written.

Sample

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

   truxton_create_everything_hashset( truxton, "\\Server\\Master Hash Sets\\Loader01.hashset" );

   truxton_destroy( truxton );
}