Added new driver virtual methods 'start_driver' and 'stop_driver'

This commit is contained in:
Paul LeoNerd Evans
2008-11-02 17:54:24 +00:00
parent 1d4d908cb8
commit 5107112a91
2 changed files with 8 additions and 0 deletions

View File

@@ -10,6 +10,8 @@ struct termkey_driver
{
void *(*new_driver)(termkey_t *tk, const char *term);
void (*free_driver)(void *);
void (*start_driver)(termkey_t *tk);
void (*stop_driver)(termkey_t *tk);
termkey_result (*getkey)(termkey_t *tk, termkey_key *key, int force);
};