mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-13 05:42:48 +01:00
25 lines
743 B
C#
25 lines
743 B
C#
using System;
|
|
using CefSharp.BrowserSubprocess;
|
|
|
|
namespace TweetDuck.Browser{
|
|
static class Program{
|
|
internal const string Version = "1.4.1.0";
|
|
|
|
private static int Main(string[] args){
|
|
SubProcess.EnableHighDPISupport();
|
|
|
|
const string typePrefix = "--type=";
|
|
string type = Array.Find(args, arg => arg.StartsWith(typePrefix, StringComparison.OrdinalIgnoreCase)).Substring(typePrefix.Length);
|
|
|
|
if (type == "renderer"){
|
|
using(SubProcess subProcess = new SubProcess(args)){
|
|
return subProcess.Run();
|
|
}
|
|
}
|
|
else{
|
|
return SubProcess.ExecuteProcess();
|
|
}
|
|
}
|
|
}
|
|
}
|