Singularity/Assets/EasyWebp/NativeWrapper/Interop/WebPProgressHook.cs
2024-05-06 11:45:45 -07:00

8 lines
255 B
C#

using System.Runtime.InteropServices;
namespace unity.libwebp.Interop
{
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public unsafe delegate int WebPProgressHook(int percent, [NativeTypeName("const WebPPicture *")] WebPPicture* picture);
}