From 86e1757e65cce680d29204053270f405aea3a018 Mon Sep 17 00:00:00 2001 From: Spoike Date: Wed, 14 Sep 2005 04:17:20 +0000 Subject: [PATCH] Added a couple of prototypes. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1314 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/common/vm.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/engine/common/vm.h b/engine/common/vm.h index cb97deeb0..914d19a20 100644 --- a/engine/common/vm.h +++ b/engine/common/vm.h @@ -46,7 +46,8 @@ void Plug_DrawReloadImages(void); -//these things are specific to FTE QuakeWorld +#ifdef VM_UI +qboolean UI_Command(void); void UI_Init (void); void UI_Restart_f(void); void UI_Stop (void); @@ -61,12 +62,14 @@ qboolean UI_DrawStatusBar(int scores); qboolean UI_DrawIntermission(void); qboolean UI_DrawFinale(void); int UI_MenuState(void); +#endif #ifdef VM_CG void CG_Stop (void); void CG_Start (void); int CG_Refresh(void); qboolean CG_Command(void); +qboolean CG_KeyPress(int key, int down); #endif #endif