RENAMED: GetFileSize() to GetFileLength()

`GetFileSize()` conflicts with the infamous `windows.h`
This commit is contained in:
Ray 2022-01-28 00:23:28 +01:00
parent 0f00c41aad
commit d38fe92c3f
2 changed files with 4 additions and 3 deletions

View file

@ -2851,8 +2851,9 @@ bool DirectoryExists(const char *dirPath)
return result;
}
// Get file size in bytes
int GetFileSize(const char *fileName)
// Get file length in bytes
// NOTE: GetFileSize() conflicts with windows.h
int GetFileLength(const char *fileName)
{
int size = 0;