Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/hakchi2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/FelLib
diff options
context:
space:
mode:
Diffstat (limited to 'FelLib')
-rw-r--r--FelLib/Fel.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/FelLib/Fel.cs b/FelLib/Fel.cs
index d525edd1..f21f7bb8 100644
--- a/FelLib/Fel.cs
+++ b/FelLib/Fel.cs
@@ -9,7 +9,7 @@ using System.Threading;
namespace com.clusterrr.FelLib
{
- public class Fel
+ public class Fel : IDisposable
{
public byte[] Fes1Bin;
byte[] uBootBin;
@@ -417,5 +417,10 @@ namespace com.clusterrr.FelLib
}
}
}
+
+ public void Dispose()
+ {
+ Close();
+ }
}
}