cleanflash: Update to 34.0.0.251

This commit is contained in:
Disyer
2022-06-17 09:28:52 +03:00
parent b915e9432a
commit 68448e704b
17 changed files with 114 additions and 61 deletions
+10 -1
View File
@@ -1,16 +1,25 @@
using System;
using System.Runtime.InteropServices;
using System.Windows.Forms;
namespace CleanFlashInstaller {
static class Program {
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main() {
static void Main(string[] args) {
if (Environment.OSVersion.Version.Major >= 6) {
//SetProcessDPIAware();
}
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new InstallForm());
}
[DllImport("user32.dll")]
private static extern bool SetProcessDPIAware();
}
}