diff options
Diffstat (limited to 'src/Ryujinx.HLE/Loaders/Npdm/ACI0.cs')
| -rw-r--r-- | src/Ryujinx.HLE/Loaders/Npdm/ACI0.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Ryujinx.HLE/Loaders/Npdm/ACI0.cs b/src/Ryujinx.HLE/Loaders/Npdm/ACI0.cs index 9a5b6b0a..8d828e8e 100644 --- a/src/Ryujinx.HLE/Loaders/Npdm/ACI0.cs +++ b/src/Ryujinx.HLE/Loaders/Npdm/ACI0.cs @@ -15,6 +15,12 @@ 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 ACI0 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> + /// <exception cref="System.NotImplementedException">The FsAccessHeader.ContentOwnerId section is not implemented.</exception> public Aci0(Stream stream, int offset) { stream.Seek(offset, SeekOrigin.Begin); |
