Componentes.Terceros.DevExp.../official/x.38/ExpressSpellChecker/Demos/CBuilder/SimpleDemo/SpellCheckerSimpleDemo.cpp

23 lines
729 B
C++
Raw Normal View History

//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
USERES("SpellCheckerSimpleDemo.res");
USEFORM("SimpeDemoMain.cpp", fmCV);
//---------------------------------------------------------------------------
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
try
{
Application->Initialize();
Application->CreateForm(__classid(TfmCV), &fmCV);
Application->Run();
}
catch (Exception &exception)
{
Application->ShowException(&exception);
}
return 0;
}
//---------------------------------------------------------------------------