mirror of
https://bitbucket.org/CPMADevs/cnq3
synced 2025-02-01 21:30:57 +00:00
moved a bunch of function declarations to qcommon.h
This commit is contained in:
parent
7ad28bf32f
commit
37377591a0
2 changed files with 13 additions and 11 deletions
|
@ -257,7 +257,6 @@ void QDECL Com_ErrorExt( int code, int module, qbool realError, PRINTF_FORMAT_ST
|
||||||
|
|
||||||
if ( code == ERR_DROP_NDP ) {
|
if ( code == ERR_DROP_NDP ) {
|
||||||
#if !defined(DEDICATED)
|
#if !defined(DEDICATED)
|
||||||
void CL_NDP_HandleError();
|
|
||||||
CL_NDP_HandleError();
|
CL_NDP_HandleError();
|
||||||
#endif
|
#endif
|
||||||
code = ERR_DROP;
|
code = ERR_DROP;
|
||||||
|
@ -1480,12 +1479,6 @@ qbool Hunk_CheckMark()
|
||||||
|
|
||||||
void Hunk_Clear()
|
void Hunk_Clear()
|
||||||
{
|
{
|
||||||
#ifndef DEDICATED
|
|
||||||
extern void CL_ShutdownCGame();
|
|
||||||
extern void CL_ShutdownUI();
|
|
||||||
#endif
|
|
||||||
extern void SV_ShutdownGameProgs();
|
|
||||||
|
|
||||||
#ifndef DEDICATED
|
#ifndef DEDICATED
|
||||||
CL_ShutdownCGame();
|
CL_ShutdownCGame();
|
||||||
CL_ShutdownUI();
|
CL_ShutdownUI();
|
||||||
|
@ -2516,7 +2509,6 @@ void Com_Frame( qbool demoPlayback )
|
||||||
{
|
{
|
||||||
if ( setjmp(abortframe) ) {
|
if ( setjmp(abortframe) ) {
|
||||||
#ifndef DEDICATED
|
#ifndef DEDICATED
|
||||||
void CL_AbortFrame();
|
|
||||||
CL_AbortFrame();
|
CL_AbortFrame();
|
||||||
#endif
|
#endif
|
||||||
return; // an ERR_DROP was thrown
|
return; // an ERR_DROP was thrown
|
||||||
|
@ -2598,8 +2590,6 @@ void Com_Frame( qbool demoPlayback )
|
||||||
// client system
|
// client system
|
||||||
//
|
//
|
||||||
if ( !com_dedicated->integer ) {
|
if ( !com_dedicated->integer ) {
|
||||||
// @TODO:
|
|
||||||
void R_WaitBeforeInputSampling();
|
|
||||||
R_WaitBeforeInputSampling();
|
R_WaitBeforeInputSampling();
|
||||||
|
|
||||||
//
|
//
|
||||||
|
|
|
@ -1049,13 +1049,18 @@ void CL_PacketEvent( netadr_t from, msg_t *msg );
|
||||||
|
|
||||||
void CL_ConsolePrint( const char* s );
|
void CL_ConsolePrint( const char* s );
|
||||||
|
|
||||||
|
void CL_AbortFrame();
|
||||||
|
|
||||||
|
void CL_ShutdownCGame();
|
||||||
|
void CL_ShutdownUI();
|
||||||
|
|
||||||
void CL_MapLoading( void );
|
void CL_MapLoading( void );
|
||||||
// do a screen update before starting to load a map
|
// do a screen update before starting to load a map
|
||||||
// when the server is going to load a new map, the entire hunk
|
// when the server is going to load a new map, the entire hunk
|
||||||
// will be cleared, so the client must shutdown cgame, ui, and
|
// will be cleared, so the client must shutdown cgame, ui, and
|
||||||
// the renderer
|
// the renderer
|
||||||
|
|
||||||
void CL_ForwardCommandToServer( const char *string );
|
void CL_ForwardCommandToServer( const char *string );
|
||||||
// adds the current command line as a clc_clientCommand to the client message.
|
// adds the current command line as a clc_clientCommand to the client message.
|
||||||
// things like godmode, noclip, etc, are commands directed to the server,
|
// things like godmode, noclip, etc, are commands directed to the server,
|
||||||
// so when they are typed in at the console, they will need to be forwarded.
|
// so when they are typed in at the console, they will need to be forwarded.
|
||||||
|
@ -1089,6 +1094,9 @@ void CL_DisableFramerateLimiter();
|
||||||
void CL_SetMenuData( qboolean typeOnly );
|
void CL_SetMenuData( qboolean typeOnly );
|
||||||
// sets GUI data for CVars registered by ui.qvm and cgame.qvm
|
// sets GUI data for CVars registered by ui.qvm and cgame.qvm
|
||||||
|
|
||||||
|
void CL_NDP_HandleError();
|
||||||
|
// the new demo player's own error handler
|
||||||
|
|
||||||
void Key_KeyNameCompletion( void (*callback)(const char *s) );
|
void Key_KeyNameCompletion( void (*callback)(const char *s) );
|
||||||
// for /bind and /unbind auto-completion
|
// for /bind and /unbind auto-completion
|
||||||
|
|
||||||
|
@ -1098,6 +1106,9 @@ void Key_WriteBindings( fileHandle_t f );
|
||||||
void S_ClearSoundBuffer( void );
|
void S_ClearSoundBuffer( void );
|
||||||
// call before filesystem access
|
// call before filesystem access
|
||||||
|
|
||||||
|
void R_WaitBeforeInputSampling();
|
||||||
|
// delays input sampling when V-Sync is enabled to reduce input latency
|
||||||
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// server interface
|
// server interface
|
||||||
|
@ -1108,6 +1119,7 @@ void SV_Frame( int msec );
|
||||||
int SV_FrameSleepMS(); // the number of milli-seconds Com_Frame should sleep
|
int SV_FrameSleepMS(); // the number of milli-seconds Com_Frame should sleep
|
||||||
void SV_PacketEvent( const netadr_t& from, msg_t* msg );
|
void SV_PacketEvent( const netadr_t& from, msg_t* msg );
|
||||||
qbool SV_GameCommand();
|
qbool SV_GameCommand();
|
||||||
|
void SV_ShutdownGameProgs();
|
||||||
|
|
||||||
|
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in a new issue