mirror of
https://github.com/modernw/App-Installer-For-Windows-8.x-Reset.git
synced 2026-04-17 21:24:48 +10:00
Organized the project files.
And also fixed some bugs.
This commit is contained in:
14
PriFileFormat/ByteSpan.cs
Normal file
14
PriFileFormat/ByteSpan.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System.Runtime.InteropServices;
|
||||
namespace PriFileFormat
|
||||
{
|
||||
public struct ByteSpan
|
||||
{
|
||||
public long Offset;
|
||||
public uint Length;
|
||||
internal ByteSpan (long offset, uint length)
|
||||
{
|
||||
Offset = offset;
|
||||
Length = length;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user