Remove unused files
This commit is contained in:
parent
fcd72d24de
commit
463061db8c
2 changed files with 0 additions and 66 deletions
|
@ -1,28 +0,0 @@
|
||||||
using System.IO;
|
|
||||||
|
|
||||||
namespace Ryujinx.HLE.Loaders.Npdm
|
|
||||||
{
|
|
||||||
class FsAccessControl
|
|
||||||
{
|
|
||||||
public int Version { get; private set; }
|
|
||||||
public ulong PermissionsBitmask { get; private set; }
|
|
||||||
public int Unknown1 { get; private set; }
|
|
||||||
public int Unknown2 { get; private set; }
|
|
||||||
public int Unknown3 { get; private set; }
|
|
||||||
public int Unknown4 { get; private set; }
|
|
||||||
|
|
||||||
public FsAccessControl(Stream Stream, int Offset, int Size)
|
|
||||||
{
|
|
||||||
Stream.Seek(Offset, SeekOrigin.Begin);
|
|
||||||
|
|
||||||
BinaryReader Reader = new BinaryReader(Stream);
|
|
||||||
|
|
||||||
Version = Reader.ReadInt32();
|
|
||||||
PermissionsBitmask = Reader.ReadUInt64();
|
|
||||||
Unknown1 = Reader.ReadInt32();
|
|
||||||
Unknown2 = Reader.ReadInt32();
|
|
||||||
Unknown3 = Reader.ReadInt32();
|
|
||||||
Unknown4 = Reader.ReadInt32();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,38 +0,0 @@
|
||||||
using System;
|
|
||||||
using System.IO;
|
|
||||||
|
|
||||||
using Ryujinx.HLE.Exceptions;
|
|
||||||
|
|
||||||
namespace Ryujinx.HLE.Loaders.Npdm
|
|
||||||
{
|
|
||||||
class FsAccessHeader
|
|
||||||
{
|
|
||||||
public int Version { get; private set; }
|
|
||||||
public ulong PermissionsBitmask { get; private set; }
|
|
||||||
|
|
||||||
public FsAccessHeader(Stream Stream, int Offset, int Size)
|
|
||||||
{
|
|
||||||
Stream.Seek(Offset, SeekOrigin.Begin);
|
|
||||||
|
|
||||||
BinaryReader Reader = new BinaryReader(Stream);
|
|
||||||
|
|
||||||
Version = Reader.ReadInt32();
|
|
||||||
PermissionsBitmask = Reader.ReadUInt64();
|
|
||||||
|
|
||||||
int DataSize = Reader.ReadInt32();
|
|
||||||
|
|
||||||
if (DataSize != 0x1c)
|
|
||||||
{
|
|
||||||
throw new InvalidNpdmException("FsAccessHeader is corrupted!");
|
|
||||||
}
|
|
||||||
|
|
||||||
int ContentOwnerIdSize = Reader.ReadInt32();
|
|
||||||
int DataAndContentOwnerIdSize = Reader.ReadInt32();
|
|
||||||
|
|
||||||
if (DataAndContentOwnerIdSize != 0x1c)
|
|
||||||
{
|
|
||||||
throw new NotImplementedException("ContentOwnerId section is not implemented!");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Add table
Add a link
Reference in a new issue