logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

remove_keyboard - Removes the Allegro keyboard handler.

Description

       Removes  the  keyboard  handler,  returning  control to the operating system.  You don't normally need to
       bother calling this, because allegro_exit() will do it for you. However, you  might  want  to  call  this
       during  runtime  if you want to change the keyboard mapping on those platforms were keyboard mappings are
       needed. You would first modify the configuration variable holding the keyboard mapping and then reinstall
       the keyboard handler.  Example:

          remove_keyboard();
          /* Switch to Spanish keyboard mapping. */
          set_config_string("system", "keyboard", "es");
          install_keyboard();

Name

       remove_keyboard - Removes the Allegro keyboard handler.

See Also

install_keyboard(3alleg4), allegro_exit(3alleg4), set_config_string(3alleg4)

Allegro                                           version 4.4.3                         remove_keyboard(3alleg4)

Synopsis

#include<allegro.h>voidremove_keyboard();

See Also