Subversion Repositories spk

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 cycrow 1
// ModMerge.cpp : main project file.
2
 
3
#include "stdafx.h"
4
#include "Forms/Form1.h"
5
 
6
using namespace ModMerge;
7
 
8
[STAThreadAttribute]
9
int main(array<System::String ^> ^args)
10
{
11
	// Enabling Windows XP visual effects before any controls are created
12
	Application::EnableVisualStyles();
13
	Application::SetCompatibleTextRenderingDefault(false); 
14
 
15
	// Create the main window and run it
16
	Application::Run(gcnew Form1());
17
	return 0;
18
}