26 lines
1.0 KiB
C++
26 lines
1.0 KiB
C++
//----------------------------------------------------------------------------
|
|
//Borland C++Builder
|
|
//Copyright (c) 1987, 1998 Borland International Inc. All Rights Reserved.
|
|
//----------------------------------------------------------------------------
|
|
//---------------------------------------------------------------------------
|
|
#include <vcl.h>
|
|
#pragma hdrstop
|
|
HINSTANCE g_hinst;
|
|
//---------------------------------------------------------------------------
|
|
USEFORM("traymain.cpp", TrayMainForm);
|
|
USERES("trayicon.res");
|
|
USEFORM("TPropiedades.cpp", Propiedades);
|
|
//---------------------------------------------------------------------------
|
|
WINAPI WinMain(HINSTANCE, HINSTANCE hInstance, LPSTR, int)
|
|
{
|
|
Application->Initialize();
|
|
g_hinst = hInstance;
|
|
Application->CreateForm(__classid(TTrayMainForm), &TrayMainForm);
|
|
Application->CreateForm(__classid(TPropiedades), &Propiedades);
|
|
Application->ShowMainForm = false;
|
|
Application->Run();
|
|
return 0;
|
|
}
|
|
//---------------------------------------------------------------------------
|
|
|