mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
provide stubs for the client-only functions (they might prove useful in the
server later anyway). this fixes nq-server's segs
This commit is contained in:
parent
6af9a5d8e6
commit
a78ea1464b
1 changed files with 24 additions and 4 deletions
|
@ -425,6 +425,26 @@ C_ProcessInput (void)
|
|||
}
|
||||
}
|
||||
|
||||
void
|
||||
C_KeyEvent (knum_t key, short unicode, qboolean down)
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
C_DrawConsole (int lines)
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
C_CheckResize (void)
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
C_NewMap (void)
|
||||
{
|
||||
}
|
||||
|
||||
static general_funcs_t plugin_info_general_funcs = {
|
||||
C_Init,
|
||||
C_Shutdown,
|
||||
|
@ -434,10 +454,10 @@ static general_data_t plugin_info_general_data;
|
|||
static console_funcs_t plugin_info_console_funcs = {
|
||||
C_Print,
|
||||
C_ProcessInput,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
C_KeyEvent,
|
||||
C_DrawConsole,
|
||||
C_CheckResize,
|
||||
C_NewMap,
|
||||
};
|
||||
static console_data_t plugin_info_console_data;
|
||||
|
||||
|
|
Loading…
Reference in a new issue