Files
Allen Wolf 883f99db97 Add project
2024-01-10 00:34:13 -06:00

40 lines
935 B
C#
Executable File

using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Text;
namespace SpotifyMod
{
class Spotify
{
static Process Process;
public static IntPtr MainWindowHandle => Process.MainWindowHandle;
public static int Id => Process.Id;
public static bool IsNull()
{
if (Process == null)
{
var processes = Process.GetProcessesByName("Spotify");
if (processes.Length == 0)
return true;
Process = processes[0];
Process.EnableRaisingEvents = true;
Process.Exited += (s, eargs) =>
{
SpotifyClosed();
};
}
return false;
}
static void SpotifyClosed()
{
Process = null;
}
}
}