Dev:Source/Data Structures/Dynamic List

提供: wiki
< Dev:Source‎ | Data Structures
2018年6月29日 (金) 02:45時点におけるYamyam (トーク | 投稿記録)による版 (1版 をインポートしました)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
移動先: 案内検索

DynamicList

For more details look at DynamicListWithAccessArray

/*========================================*/
/* Access list using realloc				 */
/*========================================*/
typedef struct DynamicArray{
  unsigned int count;
  unsigned int max_item_index;
  unsigned int last_item_index;
  void **items;
} DynamicArray;

/*========================================*/
/* Two way dynamic list with access array */
/*========================================*/
typedef struct DynamicList {
  struct DynamicArray da;
  struct ListBase lb;
} DynamicList;

Jiří Hnídek