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