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

15 lines
346 B
C#
Raw Permalink Normal View History

2024-05-06 14:45:45 -04:00
namespace unity.libwebp.Interop
{
public enum VP8StatusCode
{
VP8_STATUS_OK = 0,
VP8_STATUS_OUT_OF_MEMORY,
VP8_STATUS_INVALID_PARAM,
VP8_STATUS_BITSTREAM_ERROR,
VP8_STATUS_UNSUPPORTED_FEATURE,
VP8_STATUS_SUSPENDED,
VP8_STATUS_USER_ABORT,
VP8_STATUS_NOT_ENOUGH_DATA,
}
}