diff options
| author | Ray <[email protected]> | 2022-06-12 11:32:10 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2022-06-12 11:32:10 +0200 |
| commit | 875601c4cc9909ff76f454408dfc4f0d78bd5596 (patch) | |
| tree | 0e7e22329f60b974279b10ec8c45b884352272d9 /src/raylib.h | |
| parent | 96292bc859fa0149e419f414122693a38b2f0761 (diff) | |
| download | raylib-875601c4cc9909ff76f454408dfc4f0d78bd5596.tar.gz raylib-875601c4cc9909ff76f454408dfc4f0d78bd5596.zip | |
REVIEWED: `FilePathList`, consider maximum capacity
Diffstat (limited to 'src/raylib.h')
| -rw-r--r-- | src/raylib.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/raylib.h b/src/raylib.h index 488f6e43..31fa35c6 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -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; |
