Versions Compared

Key

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

...

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

Examples

Code Block
// Create the list
Handle = SRP_List_Create()

// Add elements
Index = SRP_List_Add(Handle, "ABC")
Index = SRP_List_Add(Handle, "DEF")
Index = SRP_List_Add(Handle, "EFG")

// Convert the SRP List into a normal list
List = SRP_List_GetVariable(Handle, @FM)

// List = "ABC":@FM:"DEF":@FM:"EFG"
// Index = 3

// Play nice with memory
SRP_List_Release(Handle)