gdebug.cpp

来自「GExperts is a set of tools built to incr」· C++ 代码 · 共 29 行

CPP
29
字号
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
USERES("GDebug.res");
USEFORMNS("DebugWindow.pas", Debugwindow, fmDebug);
USEFORMNS("DebugOptions.pas", Debugoptions, fmDebugOptions);
USEUNIT("TrayIcon.pas");
//---------------------------------------------------------------------------
#include "DebugOptions.hpp"

//---------------------------------------------------------------------------
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
 try
 {
   Application->Initialize();
   Application->ShowMainForm = ConfigInfo->Start;
   Application->Title = "GExperts Debug Window";
                 Application->CreateForm(__classid(TfmDebug), &fmDebug);
                 Application->Run();
 }
 catch (Exception &exception)
 {
   Application->ShowException(&exception);
 }
 return 0;
}
//---------------------------------------------------------------------------

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?