singrdk/base/Applications/Runtime/Full/System/ProcessExitCode.cs

20 lines
386 B
C#
Raw Normal View History

2008-03-05 09:52:00 -05:00
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
namespace System
{
public enum ProcessExitCode : int
{
Success = 0,
ErrorDefault = -1,
MainMax = 0x3fffffff,
MainMin = -0x3fffffff,
StopMax = -0x7fff0000,
StopMin = Int32.MinValue,
StopDefault = StopMin,
}
}