17 lines
367 B
C#
Raw Normal View History

2025-04-18 19:18:15 +08:00
using System;
namespace unity.libwebp.Interop
{
public unsafe partial struct ChunkParser
{
[NativeTypeName("uint8_t [4]")]
public fixed byte id[4];
[NativeTypeName("ParseStatus (*)(WebPDemuxer *const)")]
public IntPtr parse;
[NativeTypeName("int (*)(const WebPDemuxer *const)")]
public IntPtr valid;
}
}