Added functionality: Storage values

Two new functions added to save/load values as binary data:
- StorageSaveValue()
- StorageLoadValue()
This commit is contained in:
raysan5
2016-01-04 15:12:34 +01:00
parent 95da97fa74
commit 70d405b41b
4 changed files with 149 additions and 0 deletions

View File

@@ -540,6 +540,9 @@ bool IsFileDropped(void); // Check if a file h
char **GetDroppedFiles(int *count); // Retrieve dropped files into window
void ClearDroppedFiles(void); // Clear dropped files paths buffer
void StorageSaveValue(int position, int value); // Storage save integer value (to defined position)
int StorageLoadValue(int position); // Storage load integer value (from defined position)
//------------------------------------------------------------------------------------
// Input Handling Functions (Module: core)
//------------------------------------------------------------------------------------