Renamed new PR function

RENAME: GetLastWriteTime() to GetFileModTime()
This commit is contained in:
raysan5 2018-10-13 15:59:17 +02:00
parent fc4e9e7a37
commit c7b601b624
2 changed files with 8 additions and 5 deletions

View file

@ -880,7 +880,7 @@ RLAPI bool ChangeDirectory(const char *dir); // Change work
RLAPI bool IsFileDropped(void); // Check if a file has been dropped into window
RLAPI char **GetDroppedFiles(int *count); // Get dropped files names (memory should be freed)
RLAPI void ClearDroppedFiles(void); // Clear dropped files paths buffer (free memory)
RLAPI long GetLastWriteTime(const char *fileName); // Get last write time of a file
RLAPI long GetFileModTime(const char *fileName); // Get file modification time (last write time)
// Persistent storage management
RLAPI void StorageSaveValue(int position, int value); // Save integer value to storage file (to defined position)