1 // --------------------------------------------------------------------------------------------------------------------
2 // <copyright file="hb_error_code.cs" company="HandBrake Project (https://handbrake.fr)">
3 //   This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
4 // </copyright>
5 // <summary>
6 //   Defines the hb_error_code type.
7 // </summary>
8 // <auto-generated> Disable Stylecop. HandBrake internal object. </auto-generated>
9 // --------------------------------------------------------------------------------------------------------------------
10 
11 namespace HandBrake.Interop.Interop.HbLib
12 {
13     /// <summary>
14     /// The hb_error_code.
15     /// </summary>
16     internal enum hb_error_code
17     {
18         HB_ERROR_NONE = 0,
19         HB_ERROR_CANCELED,
20         HB_ERROR_WRONG_INPUT,
21         HB_ERROR_INIT,
22         HB_ERROR_UNKNOWN,
23         HB_ERROR_READ
24     }
25 }
26