mirror of https://github.com/icsharpcode/ILSpy.git
13 lines
315 B
13 lines
315 B
// ReSharper disable InconsistentNaming |
|
|
|
namespace ICSharpCode.ILSpyCmd |
|
{ |
|
public class ProgramExitCodes |
|
{ |
|
// https://www.freebsd.org/cgi/man.cgi?query=sysexits |
|
public const int EX_USAGE = 64; |
|
public const int EX_DATAERR = 65; |
|
public const int EX_NOINPUT = 66; |
|
public const int EX_SOFTWARE = 70; |
|
} |
|
}
|
|
|