mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-29 03:49:22 +01:00
14 lines
296 B
C#
14 lines
296 B
C#
namespace Penumbra.Interop.Structs;
|
|
|
|
[StructLayout(LayoutKind.Explicit)]
|
|
public struct GetResourceParameters
|
|
{
|
|
[FieldOffset(16)]
|
|
public uint SegmentOffset;
|
|
|
|
[FieldOffset(20)]
|
|
public uint SegmentLength;
|
|
|
|
public bool IsPartialRead
|
|
=> SegmentLength != 0;
|
|
}
|