1998-04-07 00:00:00 +00:00
|
|
|
#ifndef __C_BINDINGS_H__
|
|
|
|
#define __C_BINDINGS_H__
|
|
|
|
|
|
|
|
#include "doomtype.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
|
1998-04-07 00:00:00 +00:00
|
|
|
boolean C_DoKey (int key, boolean up);
|
1998-04-07 00:00:00 +00:00
|
|
|
void C_ArchiveBindings (FILE *f);
|
|
|
|
|
1998-04-07 00:00:00 +00:00
|
|
|
// Stuff used by the customize controls menu
|
|
|
|
int C_GetKeysForCommand (char *cmd, int *first, int *second);
|
|
|
|
void C_NameKeys (char *str, int first, int second);
|
|
|
|
void C_UnbindACommand (char *str);
|
|
|
|
void C_ChangeBinding (char *str, int newone);
|
|
|
|
|
1998-04-07 00:00:00 +00:00
|
|
|
#endif //__C_BINDINGS_H__
|