diff options
| author | Ray <[email protected]> | 2022-06-06 20:40:15 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2022-06-06 20:40:15 +0200 |
| commit | 5ed761b3a9a219cffa17279ca234b3861b6ae4c1 (patch) | |
| tree | 757c8845f5e586190cac4e87b9205398faa3260b /cheatsheet/raylib_core.c | |
| parent | 3f39c7165bfe4cc007f2a38c168325ee28a8da85 (diff) | |
| download | raylib.com-5ed761b3a9a219cffa17279ca234b3861b6ae4c1.tar.gz raylib.com-5ed761b3a9a219cffa17279ca234b3861b6ae4c1.zip | |
WARNING: RENAMED: `GetDroppedFiles()` to `LoadDroppedFiles()`
Diffstat (limited to 'cheatsheet/raylib_core.c')
| -rw-r--r-- | cheatsheet/raylib_core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cheatsheet/raylib_core.c b/cheatsheet/raylib_core.c index c2afba3..2f5650f 100644 --- a/cheatsheet/raylib_core.c +++ b/cheatsheet/raylib_core.c @@ -138,8 +138,8 @@ void ClearDirectoryFiles(void); // Clear directory files paths buffers (free memory) bool ChangeDirectory(const char *dir); // Change working directory, return true on success bool IsFileDropped(void); // Check if a file has been dropped into window - char **GetDroppedFiles(int *count); // Get dropped files names (memory should be freed) - void ClearDroppedFiles(void); // Clear dropped files paths buffer (free memory) + char **LoadDroppedFiles(int *count); // Get dropped files names (memory should be freed) + void UnloadDroppedFiles(void); // Clear dropped files paths buffer (free memory) long GetFileModTime(const char *fileName); // Get file modification time (last write time) // Compression/Encoding functionality |
