aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Cpu/IDiskCacheState.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2023-01-04 20:01:44 -0300
committerGitHub <noreply@github.com>2023-01-05 00:01:44 +0100
commitfc4b7cba2c083b3920f2d74e0cb4b08cf7a5a278 (patch)
treebaa5d9a71ee011ecbaeee9a67e037cb399eb7d0e /Ryujinx.Cpu/IDiskCacheState.cs
parent08831eecf77cedd3c4192ebab5a9c485fb15d51e (diff)
Make PPTC state non-static (#4157)1.1.507
* Make PPTC state non-static * DiskCacheLoadState can be null
Diffstat (limited to 'Ryujinx.Cpu/IDiskCacheState.cs')
-rw-r--r--Ryujinx.Cpu/IDiskCacheState.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/Ryujinx.Cpu/IDiskCacheState.cs b/Ryujinx.Cpu/IDiskCacheState.cs
new file mode 100644
index 00000000..61bbdf92
--- /dev/null
+++ b/Ryujinx.Cpu/IDiskCacheState.cs
@@ -0,0 +1,20 @@
+using System;
+
+namespace Ryujinx.Cpu
+{
+ /// <summary>
+ /// Disk cache load state report and management interface.
+ /// </summary>
+ public interface IDiskCacheLoadState
+ {
+ /// <summary>
+ /// Event used to report the cache load progress.
+ /// </summary>
+ event Action<LoadState, int, int> StateChanged;
+
+ /// <summary>
+ /// Cancels the disk cache load process.
+ /// </summary>
+ void Cancel();
+ }
+}