InlineKeyboardRequest.cs 602 B

123456789101112131415161718
  1. namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard
  2. {
  3. /// <summary>
  4. /// Possible requests to the keyboard when running in inline mode.
  5. /// </summary>
  6. enum InlineKeyboardRequest : uint
  7. {
  8. Unknown0 = 0x0,
  9. Finalize = 0x4,
  10. SetUserWordInfo = 0x6,
  11. SetCustomizeDic = 0x7,
  12. Calc = 0xA,
  13. SetCustomizedDictionaries = 0xB,
  14. UnsetCustomizedDictionaries = 0xC,
  15. UseChangedStringV2 = 0xD,
  16. UseMovedCursorV2 = 0xE
  17. }
  18. }