mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2026-03-13 09:24:25 +08:00
* remove Detours package, move code to /source/detours/ * remove Detours code from /source/vcl-styles-utils/delphi-detours-library/, so we have only one version * remove Vcl.FormsFix.pas, as the bugs I fixed with that are most likely fixed with the move to Delphi 10. See https://www.heidisql.com/forum.php?t=19141 for the original bug report. * only vcl-styles-utils uses the Detours lib from now on
19 lines
396 B
ObjectPascal
19 lines
396 B
ObjectPascal
// JCL_DEBUG_EXPERT_GENERATEJDBG OFF
|
|
program Demo2;
|
|
|
|
uses
|
|
Vcl.Forms,
|
|
uMain in 'uMain.pas' {Main},
|
|
CPUID in '..\..\..\..\Source\CPUID.pas',
|
|
DDetours in '..\..\..\..\Source\DDetours.pas',
|
|
InstDecode in '..\..\..\..\Source\InstDecode.pas';
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.MainFormOnTaskbar := True;
|
|
Application.CreateForm(TMain, Main);
|
|
Application.Run;
|
|
end.
|