29 lines
732 B
C
29 lines
732 B
C
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
|
|
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
|
|
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
|
|
// PARTICULAR PURPOSE.
|
|
//
|
|
// Copyright (c) Microsoft Corporation. All rights reserved
|
|
//
|
|
|
|
//
|
|
// Command line parsing logic
|
|
//
|
|
struct CommandLineSwitch
|
|
{
|
|
enum CommandLineSwitchType
|
|
{
|
|
SwitchTypeNone,
|
|
SwitchTypeInteger,
|
|
SwitchTypeString,
|
|
};
|
|
|
|
LPCWSTR SwitchName;
|
|
LPCWSTR SwitchHelp;
|
|
CommandLineSwitchType SwitchType;
|
|
void **SwitchValue;
|
|
bool SwitchValueOptional;
|
|
};
|
|
|
|
bool ParseCommandLine(int argc, wchar_t *argv[], const CommandLineSwitch Switches[], size_t SwitchCount);
|