r5sdk/r5dev/thirdparty/cppnet/cppkore/ProcessStartInfo.h
Kawe Mazidjatari 04bee896be Fix string/wstring type conflict
cppkore uses string/wstring as StringBase while we use std::string/std::wstring as string/wstring. Changed all types in cppkore to String/WString instead.
2022-05-21 21:51:35 +02:00

45 lines
1.2 KiB
C++

#pragma once
#include "StringBase.h"
namespace Diagnostics
{
enum class ProcessWindowStyle
{
Normal,
Hidden,
Minimized,
Maximized
};
// Information used when starting a new process
struct ProcessStartInfo
{
// Sets the application, document, or URL that is to be launched.
String FileName;
// Specifies the set of command line arguments to use when starting the application.
String Arguments;
// Sets the initial directory for the process that is started.
String WorkingDirectory;
// Specifies the verb to use when opening the filename.
String Verb;
// Whether or not to allow window creation.
bool CreateNoWindow;
// Whether to use ShellExecute vs CreateProcess.
bool UseShellExecute;
// Sets the style of window that should be used for the newly created process.
ProcessWindowStyle WindowStyle;
ProcessStartInfo(const String& FileName)
: FileName(FileName), UseShellExecute(true), CreateNoWindow(false), WindowStyle(ProcessWindowStyle::Normal)
{
}
ProcessStartInfo(const String& FileName, const String& Arguments)
: FileName(FileName), Arguments(Arguments), UseShellExecute(true), CreateNoWindow(false), WindowStyle(ProcessWindowStyle::Normal)
{
}
};
}