summaryrefslogtreecommitdiffhomepage
path: root/src/raylib.h
diff options
context:
space:
mode:
authorRay <[email protected]>2022-07-05 13:24:14 +0200
committerRay <[email protected]>2022-07-05 13:24:14 +0200
commite722a8dbef59cf0ecccf141af61e1e1c8a24849f (patch)
treef7958e9d9708f252203584e088e422eda9352fb4 /src/raylib.h
parente0f0a5f663af0c12cfe6a88fec4634358e76d126 (diff)
downloadraylib-e722a8dbef59cf0ecccf141af61e1e1c8a24849f.tar.gz
raylib-e722a8dbef59cf0ecccf141af61e1e1c8a24849f.zip
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.
Diffstat (limited to 'src/raylib.h')
-rw-r--r--src/raylib.h4
1 files changed, 0 insertions, 4 deletions
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)
//------------------------------------------------------------------------------------