14 lines
242 B
C#
Raw Normal View History

2025-04-18 19:18:15 +08:00
using System;
namespace unity.libwebp.Interop
{
public unsafe partial struct WebPData
{
[NativeTypeName("const uint8_t *")]
public byte* bytes;
[NativeTypeName("size_t")]
public UIntPtr size;
}
}