ModioListNode - modio/modio-sdk-legacy GitHub Wiki

The ModioListNode is used internally to store values on a list. Use just in case you are writing a wrapper on other language than C and C++.

struct ModioListNode
{
  char* value;
  ModioListNode* next;
};

API schemas: n/a

C++ wrapper: n/a

Name Type Description
value char* Value stored.
next ModioListNode* Next node on the list.