Files
VMwareLauncher/VmwareLauncher/ApplicationControl.cs
Dunestorm 6d7fec03b4 [VMware Launcher 2.0.9.5]
- Refactored code.
- Fixed bug: "#1 Welcome message shows despite VMware not being installed"
2021-03-26 20:20:46 +00:00

14 lines
252 B
C#

using System;
namespace VMwareLauncher
{
public static class ApplicationControl
{
public static void Shutdown(int exitCode)
{
Startup.trayIcon.Destroy();
Environment.Exit(exitCode);
}
}
}