engine: split crashhandler to win32 and posix versions

This commit is contained in:
Alibek Omarov
2024-12-24 10:37:49 +03:00
parent bd0d6644e0
commit cfebee6ea8
6 changed files with 568 additions and 561 deletions
-2
View File
@@ -51,8 +51,6 @@ void Sys_Error( const char *error, ... ) FORMAT_CHECK( 1 );
qboolean Sys_LoadLibrary( dll_info_t *dll );
qboolean Sys_FreeLibrary( dll_info_t *dll );
void Sys_ParseCommandLine( int argc, char **argv );
void Sys_SetupCrashHandler( void );
void Sys_RestoreCrashHandler( void );
void Sys_DebugBreak( void );
#define Sys_GetParmFromCmdLine( parm, out ) _Sys_GetParmFromCmdLine( parm, out, sizeof( out ))
qboolean _Sys_GetParmFromCmdLine( const char *parm, char *out, size_t size );