Subversion Repositories spk

Rev

Blame | Last modification | View Log | RSS feed

// ModMerge.cpp : main project file.

#include "stdafx.h"
#include "Forms/Form1.h"

using namespace ModMerge;

[STAThreadAttribute]
int main(array<System::String ^> ^args)
{
        // Enabling Windows XP visual effects before any controls are created
        Application::EnableVisualStyles();
        Application::SetCompatibleTextRenderingDefault(false); 

        // Create the main window and run it
        Application::Run(gcnew Form1());
        return 0;
}