diff options
Diffstat (limited to 'src/Ryujinx.HLE/Loaders/Npdm/ACID.cs')
-rw-r--r-- | src/Ryujinx.HLE/Loaders/Npdm/ACID.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Ryujinx.HLE/Loaders/Npdm/ACID.cs b/src/Ryujinx.HLE/Loaders/Npdm/ACID.cs index ab30b40c..57d0ee27 100644 --- a/src/Ryujinx.HLE/Loaders/Npdm/ACID.cs +++ b/src/Ryujinx.HLE/Loaders/Npdm/ACID.cs @@ -19,6 +19,11 @@ namespace Ryujinx.HLE.Loaders.Npdm public ServiceAccessControl ServiceAccessControl { get; private set; } public KernelAccessControl KernelAccessControl { get; private set; } + /// <exception cref="InvalidNpdmException">The stream doesn't contain valid ACID data.</exception> + /// <exception cref="System.ArgumentException">The stream does not support reading, is <see langword="null"/>, or is already closed.</exception> + /// <exception cref="EndOfStreamException">The end of the stream is reached.</exception> + /// <exception cref="System.ObjectDisposedException">The stream is closed.</exception> + /// <exception cref="IOException">An I/O error occurred.</exception> public Acid(Stream stream, int offset) { stream.Seek(offset, SeekOrigin.Begin); |