28 lines
No EOL
590 B
C#
28 lines
No EOL
590 B
C#
using Ryujinx.Core.OsHle.Services;
|
|
using System;
|
|
|
|
namespace Ryujinx.Core.OsHle.Handles
|
|
{
|
|
class KSession : IDisposable
|
|
{
|
|
public IpcService Service { get; private set; }
|
|
|
|
public KSession(IpcService Service)
|
|
{
|
|
this.Service = Service;
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
Dispose(true);
|
|
}
|
|
|
|
protected virtual void Dispose(bool Disposing)
|
|
{
|
|
if (Disposing && Service is IDisposable DisposableService)
|
|
{
|
|
DisposableService.Dispose();
|
|
}
|
|
}
|
|
}
|
|
} |