Cosmos/source2/Debug/Microsoft.VisualStudio.Debugger.SampleEngineWorker/ProcessLaunchInfo.h
mterwoord_cp 7d75c57bb4
2010-01-06 12:16:20 +00:00

42 lines
804 B
C

#pragma once
BEGIN_NAMESPACE
public ref class ProcessLaunchInfo sealed
{
public:
ProcessLaunchInfo(
String^ exe,
String^ commandLine,
String^ dir,
String^ environment,
String^ options,
DWORD launchFlags,
DWORD stdInput,
DWORD stdOutput,
DWORD stdError
) :
Exe(exe),
CommandLine(commandLine),
Dir(dir),
Environment(environment),
Options(options),
LaunchFlags(launchFlags),
StdInput(stdInput),
StdOutput(stdOutput),
StdError(stdError)
{
}
initonly String^ Exe;
initonly String^ CommandLine;
initonly String^ Dir;
initonly String^ Environment;
initonly String^ Options;
initonly DWORD LaunchFlags;
initonly DWORD StdInput;
initonly DWORD StdOutput;
initonly DWORD StdError;
};
END_NAMESPACE