mirror of https://github.com/icsharpcode/ILSpy.git
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.
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; |
|
} |
|
}
|
|
|