2
0
mirror of https://github.com/FWGS/xash3d-fwgs synced 2024-11-22 01:45:19 +01:00

filesystem: fix -Wmissing-prototypes

This commit is contained in:
Alibek Omarov 2024-01-27 19:43:32 +03:00
parent 6d3f188675
commit b077822f4d

View File

@ -627,7 +627,7 @@ static void FS_WriteGameInfo( const char *filepath, gameinfo_t *GameInfo )
FS_Close( f ); // all done FS_Close( f ); // all done
} }
void FS_InitGameInfo( gameinfo_t *GameInfo, const char *gamedir ) static void FS_InitGameInfo( gameinfo_t *GameInfo, const char *gamedir )
{ {
memset( GameInfo, 0, sizeof( *GameInfo )); memset( GameInfo, 0, sizeof( *GameInfo ));
@ -658,7 +658,7 @@ void FS_InitGameInfo( gameinfo_t *GameInfo, const char *gamedir )
GameInfo->max_particles = 4096; GameInfo->max_particles = 4096;
} }
void FS_ParseGenericGameInfo( gameinfo_t *GameInfo, const char *buf, const qboolean isGameInfo ) static void FS_ParseGenericGameInfo( gameinfo_t *GameInfo, const char *buf, const qboolean isGameInfo )
{ {
char *pfile = (char*) buf; char *pfile = (char*) buf;
qboolean found_linux = false, found_osx = false; qboolean found_linux = false, found_osx = false;
@ -919,7 +919,7 @@ void FS_ParseGenericGameInfo( gameinfo_t *GameInfo, const char *buf, const qbool
FS_CreateDefaultGameInfo FS_CreateDefaultGameInfo
================ ================
*/ */
void FS_CreateDefaultGameInfo( const char *filename ) static void FS_CreateDefaultGameInfo( const char *filename )
{ {
gameinfo_t defGI; gameinfo_t defGI;
@ -3022,6 +3022,7 @@ fs_api_t g_api =
FS_GetFullDiskPath, FS_GetFullDiskPath,
}; };
int EXPORT GetFSAPI( int version, fs_api_t *api, fs_globals_t **globals, fs_interface_t *engfuncs );
int EXPORT GetFSAPI( int version, fs_api_t *api, fs_globals_t **globals, fs_interface_t *engfuncs ) int EXPORT GetFSAPI( int version, fs_api_t *api, fs_globals_t **globals, fs_interface_t *engfuncs )
{ {
if( engfuncs && !FS_InitInterface( version, engfuncs )) if( engfuncs && !FS_InitInterface( version, engfuncs ))