9 lines
352 B
C#
Raw Normal View History

2025-04-18 19:18:15 +08:00
using System;
using System.Runtime.InteropServices;
namespace unity.libwebp.Interop
{
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public unsafe delegate int WebPWriterFunction([NativeTypeName("const uint8_t *")] byte* data, [NativeTypeName("size_t")] UIntPtr data_size, [NativeTypeName("const WebPPicture *")] WebPPicture* picture);
}