1
Fork 0
This repository has been archived on 2025-04-12. You can view files and clone it, but cannot push or open issues or pull requests.
sqpack-indexer/SqPackIndexer/SeFileDescriptor.cs
2023-10-14 19:50:50 -04:00

18 lines
No EOL
509 B
C#

using System.Runtime.InteropServices;
using FFXIVClientStructs.FFXIV.Client.System.File;
using FFXIVClientStructs.FFXIV.Client.System.Resource.Handle;
namespace SqPackIndexer
{
[StructLayout(LayoutKind.Explicit)]
public unsafe struct SeFileDescriptor
{
[FieldOffset(0x00)] public FileMode FileMode;
[FieldOffset(0x30)] public void* FileDescriptor;
[FieldOffset(0x50)] public ResourceHandle* ResourceHandle;
[FieldOffset(0x70)] public char Utf16FileName;
}
}