First commit 01/10/1999
This commit is contained in:
29
CTapiz.cpp
Normal file
29
CTapiz.cpp
Normal file
@ -0,0 +1,29 @@
|
||||
//---------------------------------------------------------------------------
|
||||
#include <registry.hpp>
|
||||
#include <vcl.h>
|
||||
#pragma hdrstop
|
||||
USERES("CTapiz.res");
|
||||
USEFORM("CTapiz_mm.cpp", CTapiz);
|
||||
HINSTANCE g_hinst;
|
||||
//---------------------------------------------------------------------------
|
||||
WINAPI WinMain(HINSTANCE hInstance, HINSTANCE, LPSTR lpCmdLine, int)
|
||||
{
|
||||
try
|
||||
{
|
||||
Application->Initialize();
|
||||
g_hinst = hInstance;
|
||||
Application->Title = "CambiarTapiz!";
|
||||
Application->CreateForm(__classid(TCTapiz), &CTapiz);
|
||||
Application->ShowMainForm = false;
|
||||
|
||||
if ( AnsiString( lpCmdLine ).IsEmpty() )
|
||||
Application->Run();
|
||||
}
|
||||
|
||||
catch (Exception &exception)
|
||||
{
|
||||
Application->ShowException(&exception);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
//---------------------------------------------------------------------------
|
Reference in New Issue
Block a user