8 lines
255 B
C#
Raw Normal View History

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