www.gusucode.com > VC++实现语音合成源码 > VC++实现语音合成源码/gusucode/SoundsCPP.cpp

    // SoundsCPP.cpp : main project file.

#include "stdafx.h"
#include "speakerForm.h"

using namespace SoundsCPP;

[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;
}