mirror of
https://github.com/openmoh/openmohaa.git
synced 2025-04-28 13:47:58 +03:00
Added FS_FileTime (unimplemented)
This commit is contained in:
parent
a6d268e1a1
commit
193cc9dc10
2 changed files with 13 additions and 0 deletions
|
@ -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
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue