Skip to content
This repository was archived by the owner on Sep 21, 2022. It is now read-only.

ModioListNode

Ahmed Castro edited this page Feb 12, 2018 · 1 revision

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.

Contents

Clone this wiki locally