mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
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.
45 lines
1.2 KiB
C++
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)
|
|
{
|
|
}
|
|
};
|
|
} |