mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +00:00
4bd37e7b64
Doxygen hates the QuakeC-style function prototypes we use, so switch to the C-style prototypes.
10 lines
379 B
C
10 lines
379 B
C
#ifndef __ruamoko_key_h
|
|
#define __ruamoko_key_h
|
|
|
|
#include "QF/keys.h"
|
|
@extern string Key_SetBinding (integer target, integer keynum, string binding);
|
|
@extern integer Key_LookupBinding (integer target, integer bindnum, string binding);
|
|
@extern integer Key_CountBinding (integer target, string binding);
|
|
@extern string Key_KeynumToString (integer keynum);
|
|
|
|
#endif//__ruamoko_key_h
|