ShellCat.cpp
Upload User: aorui801
Upload Date: 2022-07-20
Package Size: 201k
Code Size: 1k
Category:

Shell api

Development Platform:

Visual C++

  1. //---------------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4. USERES("ShellCat.res");
  5. USEFORM("main.cpp", frmMain);
  6. USEUNIT("KeyLog.cpp");
  7. //---------------------------------------------------------------------------
  8. WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  9. {
  10.         try
  11.         {
  12.                  Application->Initialize();
  13.                  Application->CreateForm(__classid(TfrmMain), &frmMain);
  14.                  Application->Run();
  15.         }
  16.         catch (Exception &exception)
  17.         {
  18.                  Application->ShowException(&exception);
  19.         }
  20.         return 0;
  21. }
  22. //---------------------------------------------------------------------------