Singularity/Assets/EasyWebp/NativeWrapper/Interop/WebPData.cs

14 lines
242 B
C#
Raw Permalink Normal View History

2024-05-06 14:45:45 -04: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;
}
}