Files
HeidiSQL/source/detours/Demo/DetoursDemo/win32api/Demo2/Demo2.dpr
Ansgar Becker 54a7930045 Clean up:
* 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
2018-10-30 16:44:48 +01:00

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.