Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

IMPORTANT: You should always release the handle to an SRP Hash Table when you no longer need it by calling SRP_HashTable_Release.

Examples

Code Block
// Create a case-insensitive hash table
Handle = SRP_HashTable_Create()

// Create a case-sensitive hash table
Handle = SRP_HashTable_Create(1)

// Create a case-sensitive hash table that will contain roughly 250,000 elements
Handle = SRP_HashTable_Create(1, 250000)