-
Notifications
You must be signed in to change notification settings - Fork 0
/
Program.cs
45 lines (43 loc) · 1.63 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Ny4rlk0IdleBrowser
{
internal static class Program
{
public static Process PriorProcess()
// Returns a System.Diagnostics.Process pointing to
// a pre-existing process with the same name as the
// current one, if any; or null if the current process
// is unique.
{
try
{
Process curr = Process.GetCurrentProcess();
Process[] procs = Process.GetProcessesByName(curr.ProcessName);
foreach (Process p in procs)
{
if ((p.Id != curr.Id) &&
(p.MainModule.FileName == curr.MainModule.FileName))
return p;
}
return null;
}
catch (Exception) { return null; }
}
/// <summary>
/// Uygulamanın ana girdi noktası.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
//if (PriorProcess() != null) {MessageBox.Show("Programın birden fazla kopyasını aynı anda çalıştırmayın!\nBunun yerine kullanıcı adlarını toplu olarak her kullanıcı adı şifresine karşılık gelecek şekilde program arayüzüne ekleyin!"); Environment.Exit(0); }//Aynı uygulama zaten çalışıyorsa yeniden başlamayalım.
Application.Run(new logic());
}
}
}