mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-13 12:14:17 +01:00
21 lines
No EOL
452 B
C#
21 lines
No EOL
452 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Penumbra.Structs
|
|
{
|
|
[StructLayout( LayoutKind.Explicit )]
|
|
public unsafe struct SeFileDescriptor
|
|
{
|
|
[FieldOffset( 0x00 )]
|
|
public FileMode FileMode;
|
|
|
|
[FieldOffset( 0x30 )]
|
|
public void* FileDescriptor; //
|
|
|
|
[FieldOffset( 0x50 )]
|
|
public ResourceHandle* ResourceHandle; //
|
|
|
|
|
|
[FieldOffset( 0x68 )]
|
|
public byte UtfFileName; //
|
|
}
|
|
} |