mirror of
https://github.com/libretro/Mesen.git
synced 2025-04-04 04:11:34 +00:00
33 lines
714 B
C#
33 lines
714 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Net;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
using Mesen.GUI.Config;
|
|
using Mesen.GUI.Forms;
|
|
|
|
namespace Mesen.GUI
|
|
{
|
|
class RuntimeChecker
|
|
{
|
|
public static bool TestDll()
|
|
{
|
|
try {
|
|
return InteropEmu.TestDll();
|
|
} catch {
|
|
}
|
|
|
|
if(!File.Exists("MesenCore.dll") && !File.Exists("libMesenCore.dll")) {
|
|
MesenMsgBox.Show("UnableToStartMissingFiles", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
} else {
|
|
MesenMsgBox.Show("UnableToStartMissingDependencies", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
}
|
|
return false;
|
|
}
|
|
}
|
|
}
|