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

8 lines
255 B
C#
Raw Normal View History

2024-05-06 14:45:45 -04:00
using System.Runtime.InteropServices;
namespace unity.libwebp.Interop
{
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public unsafe delegate int WebPProgressHook(int percent, [NativeTypeName("const WebPPicture *")] WebPPicture* picture);
}