|
OSAPI
0.29
Open System API
|
#include <common_types_list.h>

Data Fields | |
| t_size | capacity |
| The number of items that the list can accommodate. | |
| t_size | requiredCapacity |
| The number of items would be required (in case the capacity is less what was required ) | |
| t_size | itemSize |
| Size, in bytes, of each item in memory. This is typically the sizeof of a given type. | |
| t_size | nitems |
| Current capacity usage, i.e. how many items are in the list. | |
| t_memory | mem |
| Allocated memory to store the array of items. | |
Structure supporting a self describing list of items The reasoning behind this type is that many interface functions require too many parameters