Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

keymap_fi.c 1.0KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /** @file
  2. *
  3. * "fi" keyboard mapping
  4. *
  5. * This file is automatically generated; do not edit
  6. *
  7. */
  8. FILE_LICENCE ( PUBLIC_DOMAIN );
  9. #include <ipxe/keymap.h>
  10. /** "fi" keyboard mapping */
  11. struct key_mapping fi_mapping[] __keymap = {
  12. { 0x22, 0x5b }, /* '"' => '[' */
  13. { 0x26, 0x2f }, /* '&' => '/' */
  14. { 0x27, 0x7b }, /* '\'' => '{' */
  15. { 0x28, 0x29 }, /* '(' => ')' */
  16. { 0x29, 0x3d }, /* ')' => '=' */
  17. { 0x2a, 0x28 }, /* '*' => '(' */
  18. { 0x2b, 0x60 }, /* '+' => '`' */
  19. { 0x2d, 0x2b }, /* '-' => '+' */
  20. { 0x2f, 0x2d }, /* '/' => '-' */
  21. { 0x3a, 0x5c }, /* ':' => '\\' */
  22. { 0x3b, 0x7c }, /* ';' => '|' */
  23. { 0x3c, 0x3b }, /* '<' => ';' */
  24. { 0x3d, 0x27 }, /* '=' => '\'' */
  25. { 0x3e, 0x3a }, /* '>' => ':' */
  26. { 0x3f, 0x5f }, /* '?' => '_' */
  27. { 0x40, 0x22 }, /* '@' => '"' */
  28. { 0x5b, 0x7d }, /* '[' => '}' */
  29. { 0x5c, 0x27 }, /* '\\' => '\'' */
  30. { 0x5e, 0x26 }, /* '^' => '&' */
  31. { 0x5f, 0x3f }, /* '_' => '?' */
  32. { 0x7b, 0x5d }, /* '{' => ']' */
  33. { 0x7c, 0x2a }, /* '|' => '*' */
  34. { 0x7d, 0x5e }, /* '}' => '^' */
  35. };