mirror of
https://github.com/xivdev/Penumbra.git
synced 2026-02-23 08:17:59 +01:00
Extract all signatures to a single file.
This commit is contained in:
parent
40b7266c22
commit
a061ab9b8b
18 changed files with 202 additions and 96 deletions
14
Penumbra/Interop/Structs/ClipScheduler.cs
Normal file
14
Penumbra/Interop/Structs/ClipScheduler.cs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace Penumbra.Interop.Structs;
|
||||
|
||||
[StructLayout( LayoutKind.Explicit )]
|
||||
public unsafe struct ClipScheduler
|
||||
{
|
||||
[FieldOffset( 0 )]
|
||||
public IntPtr* VTable;
|
||||
|
||||
[FieldOffset( 0x38 )]
|
||||
public IntPtr SchedulerTimeline;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue