mirror of
https://github.com/modernw/App-Installer-For-Windows-8.x-Reset.git
synced 2026-04-11 17:57:19 +10:00
15 lines
238 B
C#
15 lines
238 B
C#
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;
|
|
}
|
|
}
|
|
}
|