mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +00:00
a12fa85506
stringh: I'm not really that keen on those interfaces and I'ld like to see them go away) and create libcsqc for most of it (key goes into gui)
10 lines
379 B
C
10 lines
379 B
C
#ifndef __ruamoko_key_h
|
|
#define __ruamoko_key_h
|
|
|
|
#include "QF/keys.h"
|
|
@extern string (integer target, integer keynum, string binding) Key_SetBinding;
|
|
@extern integer (integer target, integer bindnum, string binding) Key_LookupBinding;
|
|
@extern integer (integer target, string binding) Key_CountBinding;
|
|
@extern string (integer keynum) Key_KeynumToString;
|
|
|
|
#endif//__ruamoko_key_h
|