www.pudn.com > ShellMon.rar > ShellCat.cpp
//--------------------------------------------------------------------------- #include#pragma hdrstop USERES("ShellCat.res"); USEFORM("main.cpp", frmMain); USEUNIT("KeyLog.cpp"); //--------------------------------------------------------------------------- WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int) { try { Application->Initialize(); Application->CreateForm(__classid(TfrmMain), &frmMain); Application->Run(); } catch (Exception &exception) { Application->ShowException(&exception); } return 0; } //---------------------------------------------------------------------------