From e722a8dbef59cf0ecccf141af61e1e1c8a24849f Mon Sep 17 00:00:00 2001 From: Ray Date: Tue, 5 Jul 2022 13:24:14 +0200 Subject: WARNING: BREAKING: REMOVED: `*StorageValue()` functions Those functions were platform dependent and user has no control over the file created. They have been removed from raylib and just moved to `core_storage_values` example. --- src/raylib.h | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/raylib.h') diff --git a/src/raylib.h b/src/raylib.h index f9db8a17..3bc08898 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -1081,10 +1081,6 @@ RLAPI unsigned char *DecompressData(const unsigned char *compData, int compDataS RLAPI char *EncodeDataBase64(const unsigned char *data, int dataSize, int *outputSize); // Encode data to Base64 string, memory must be MemFree() RLAPI unsigned char *DecodeDataBase64(const unsigned char *data, int *outputSize); // Decode Base64 string data, memory must be MemFree() -// Persistent storage management -RLAPI bool SaveStorageValue(unsigned int position, int value); // Save integer value to storage file (to defined position), returns true on success -RLAPI int LoadStorageValue(unsigned 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) //------------------------------------------------------------------------------------ -- cgit v1.2.3