REVIEWED: FilePathList, consider maximum capacity

This commit is contained in:
Ray 2022-06-12 11:32:10 +02:00
parent 96292bc859
commit 875601c4cc
3 changed files with 25 additions and 20 deletions

View file

@ -484,6 +484,7 @@ typedef struct VrStereoConfig {
// File path list
typedef struct FilePathList {
unsigned int capacity; // Filepaths max entries
unsigned int count; // Filepaths entries count
char **paths; // Filepaths entries
} FilePathList;