blob: 6129310e1c1b9d86c2dbd44c88133a6a0b44787d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Copyright © Microsoft Corporation.
// This source file is subject to the Microsoft Permissive License.
// See http://www.microsoft.com/resources/sharedsource/licensingbasics/sharedsourcelicenses.mspx.
// All other rights reserved.
namespace Microsoft.Ddue.Tools.CommandLine
{
internal enum ParseResult {
Success,
ArgumentNotAllowed,
MalformedArgument,
MissingOption,
UnrecognizedOption,
MultipleOccurance
}
}
|