16 lines
233 B
C#
Raw Normal View History

2025-04-18 19:18:15 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace WebP
{
public enum Error
{
Success = 0,
InvalidHeader = 20,
DecodingError = 30,
}
}