You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
downkyi/Brotli.Core/Enum/BrotliDecoderResult.cs

23 lines
608 B

namespace Brotli
{
public enum BrotliDecoderResult:int
{
/// <summary>
/// Decoding error, e.g. corrupt input or memory allocation problem
/// </summary>
Error = 0,
/// <summary>
/// Decoding successfully completed
/// </summary>
Success = 1,
/// <summary>
/// Partially done; should be called again with more input
/// </summary>
NeedsMoreInput = 2,
/// <summary>
/// Partially done; should be called again with more output
/// </summary>
NeedsMoreOutput = 3
};
}