From 17be194afcd1c8d1f35f3a083f0eb57ec5ffb8e8 Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Mon, 25 Jan 2021 12:23:10 +0000 Subject: [PATCH] Add UnloadFileData - Add missing UnloadFileData function. Frees memory allocated by LoadFileData. --- Raylib-cs/Raylib.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Raylib-cs/Raylib.cs b/Raylib-cs/Raylib.cs index 3b7aba9..06da1c9 100644 --- a/Raylib-cs/Raylib.cs +++ b/Raylib-cs/Raylib.cs @@ -1189,6 +1189,11 @@ namespace Raylib_cs [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr LoadFileData(string fileName, ref int bytesRead); + // Unload file data allocated by LoadFileData() + // data refers to a unsigned char * + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void UnloadFileData(IntPtr data); + // Save data to file from byte array (write) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SaveFileData(string fileName, IntPtr data, int bytesToWrite);