trial.cpp
上传用户:graphite
上传日期:2020-09-09
资源大小:2587k
文件大小:1k
源码类别:

破解

开发平台:

Others

  1. //---------------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4. USERES("trial.res");
  5. USEFORM("main.cpp", frmApp);
  6. USEFORM("regkey.cpp", frmRegKey);
  7. USELIB("includeaspr_ide_bcb.lib");
  8. //---------------------------------------------------------------------------
  9. WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  10. {
  11.         try
  12.         {
  13.                  Application->Initialize();
  14.                  Application->CreateForm(__classid(TfrmApp), &frmApp);
  15.                  Application->CreateForm(__classid(TfrmRegKey), &frmRegKey);
  16.                  Application->Run();
  17.         }
  18.         catch (Exception &exception)
  19.         {
  20.                  Application->ShowException(&exception);
  21.         }
  22.         return 0;
  23. }
  24. //---------------------------------------------------------------------------