14 lines
232 B
C#
Raw Normal View History

2025-04-18 19:18:15 +08:00
using System;
namespace unity.libwebp.Interop
{
public partial struct ChunkData
{
[NativeTypeName("size_t")]
public UIntPtr offset_;
[NativeTypeName("size_t")]
public UIntPtr size_;
}
}