input.[ch]: Move some type definitions from .h to .c

These aren't used outside input.c.
This commit is contained in:
Uoti Urpala 2008-04-30 09:53:12 +03:00
parent a4240ff361
commit d0e8292629
2 changed files with 10 additions and 10 deletions

View File

@ -39,6 +39,16 @@
#include "ar.h"
typedef struct mp_cmd_bind {
int input[MP_MAX_KEY_DOWN+1];
char* cmd;
} mp_cmd_bind_t;
typedef struct mp_key_name {
int key;
char* name;
} mp_key_name_t;
/// This array defines all known commands.
/// The first field is an id used to recognize the command without too many strcmp.
/// The second is obviously the command name.

View File

@ -194,16 +194,6 @@ typedef struct mp_cmd {
} mp_cmd_t;
typedef struct mp_cmd_bind {
int input[MP_MAX_KEY_DOWN+1];
char* cmd;
} mp_cmd_bind_t;
typedef struct mp_key_name {
int key;
char* name;
} mp_key_name_t;
// These typedefs are for the drivers. They are the functions used to retrieve
// the next key code or command.