diff options
| author | Ac_K <Acoustik666@gmail.com> | 2020-09-28 00:00:38 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-28 00:00:38 +0200 |
| commit | 4f65043ad77dcc37d9195b2a5e976d102421b82a (patch) | |
| tree | ad9ff1ed1a672263a419843371e732b01fa3a811 /Ryujinx.HLE/IHostUiHandler.cs | |
| parent | f89b754abb3d721c09ba6ab00f7906d2d5ccb02b (diff) | |
Basic impl of Error Applet (#1551)
Diffstat (limited to 'Ryujinx.HLE/IHostUiHandler.cs')
| -rw-r--r-- | Ryujinx.HLE/IHostUiHandler.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Ryujinx.HLE/IHostUiHandler.cs b/Ryujinx.HLE/IHostUiHandler.cs index 8e9bfc77..b85fc356 100644 --- a/Ryujinx.HLE/IHostUiHandler.cs +++ b/Ryujinx.HLE/IHostUiHandler.cs @@ -31,5 +31,10 @@ namespace Ryujinx.HLE /// <param name="kind">The program kind.</param> /// <param name="value">The value associated to the <paramref name="kind"/>.</param> void ExecuteProgram(Switch device, ProgramSpecifyKind kind, ulong value); + + /// Displays a Message Dialog box specific to Error Applet and blocks until it is closed. + /// </summary> + /// <returns>False when OK is pressed, True when another button (Details) is pressed.</returns> + bool DisplayErrorAppletDialog(string title, string message, string[] buttonsText); } }
\ No newline at end of file |
