Added FS_FileTime (unimplemented)

This commit is contained in:
smallmodel 2023-12-29 18:59:06 +01:00
parent a6d268e1a1
commit 193cc9dc10
No known key found for this signature in database
GPG key ID: A96F163ED4891440
2 changed files with 13 additions and 0 deletions

View file

@ -4362,3 +4362,14 @@ void FS_CanonicalFilename(char* filename)
p++;
}
}
void FS_FileTime(const char* filename, char* date, char* size) {
const char* ospath;
date[0] = 0;
size[0] = 0;
ospath = FS_BuildOSPath(fs_homepath->string, fs_gamedir, filename);
// FIXME: unimplemented
}

View file

@ -825,6 +825,8 @@ void FS_FilenameCompletion( const char *dir, const char *ext,
const char* FS_GetCurrentGameDir();
void FS_GetRelativeFilename( const char *currentDirectory, const char *absoluteFilename, char *out, size_t destlen );
void FS_FileTime(const char* filename, char* date, char* size);
extern cvar_t* fs_debug;
extern cvar_t* fs_mapdir;