engine: move wcon definitions to platform.h

This commit is contained in:
Alibek Omarov 2024-07-21 02:06:51 +03:00
parent 963cbf61e4
commit 024a335505
2 changed files with 5 additions and 14 deletions

View File

@ -78,20 +78,6 @@ void Sys_InitLog( void );
void Sys_PrintLog( const char *pMsg );
int Sys_LogFileNo( void );
//
// con_win.c
//
#if XASH_WIN32
void Wcon_InitConsoleCommands( void );
void Wcon_ShowConsole( qboolean show );
void Wcon_CreateConsole( void );
void Wcon_DestroyConsole( void );
void Wcon_DisableInput( void );
char *Wcon_Input( void );
void Wcon_WinPrint( const char *pMsg );
void Wcon_SetStatus( const char *pStatus );
#endif
// text messages
#define Msg Con_Printf

View File

@ -71,6 +71,11 @@ void Android_Shutdown( void );
#if XASH_WIN32
void Wcon_CreateConsole( qboolean con_showalways );
void Wcon_DestroyConsole( void );
void Wcon_InitConsoleCommands( void );
void Wcon_ShowConsole( qboolean show );
void Wcon_DisableInput( void );
char *Wcon_Input( void );
void Wcon_WinPrint( const char *pMsg );
#endif
#if XASH_NSWITCH