WARNING: RENAMED: Storage functions
Renamed functions for consistency: - StorageLoadValue() > LoadStorageValue() - StorageSaveValue() > SaveStorageValue()
This commit is contained in:
parent
fadd74358b
commit
e5b5aea998
2 changed files with 5 additions and 5 deletions
|
@ -972,8 +972,8 @@ RLAPI unsigned char *CompressData(unsigned char *data, int dataLength, int *comp
|
|||
RLAPI unsigned char *DecompressData(unsigned char *compData, int compDataLength, int *dataLength); // Decompress data (DEFLATE algorythm)
|
||||
|
||||
// Persistent storage management
|
||||
RLAPI void StorageSaveValue(int position, int value); // Save integer value to storage file (to defined position)
|
||||
RLAPI int StorageLoadValue(int position); // Load integer value from storage file (from defined position)
|
||||
RLAPI void SaveStorageValue(int position, int value); // Save integer value to storage file (to defined position)
|
||||
RLAPI int LoadStorageValue(int position); // Load integer value from storage file (from defined position)
|
||||
|
||||
RLAPI void OpenURL(const char *url); // Open URL with default system browser (if available)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue