Cosmos/source2/Debug/Cosmos.Debug.GDB/Program.cs
Trivalik_cp 612ef94eb0 update gdb to 7.3
add break to Cosmos.Debug.GDB client and update it for current gdb version
2011-08-11 23:11:34 +00:00

23 lines
No EOL
746 B
C#

using Environment = System.Environment;
using STAThread = System.STAThreadAttribute;
using Application = System.Windows.Forms.Application;
namespace Cosmos.Debug.GDB {
static class Program {
[STAThread]
static void Main() {
var xArgs = Environment.GetCommandLineArgs();
if (xArgs.Length > 1) {
if (false == Settings.Load(xArgs[1]))
return;
}
if (xArgs.Length > 2) {
Settings.AutoConnect = string.Compare(xArgs[2], "/Connect", true) == 0;
}
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new FormMain());
}
}
}