mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-11 15:36:39 +00:00
14 lines
534 B
C#
14 lines
534 B
C#
|
using Ryujinx.HLE.HOS.Applets;
|
||
|
|
||
|
namespace Ryujinx.HLE
|
||
|
{
|
||
|
public interface IHostUiHandler
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Displays an Input Dialog box to the user and blocks until text is entered.
|
||
|
/// </summary>
|
||
|
/// <param name="userText">Text that the user entered. Set to `null` on internal errors</param>
|
||
|
/// <returns>True when OK is pressed, False otherwise. Also returns True on internal errors</returns>
|
||
|
bool DisplayInputDialog(SoftwareKeyboardUiArgs args, out string userText);
|
||
|
}
|
||
|
}
|