source: trunk/Packages/DpiControls/DpiControlsPackage.pas

Last change on this file was 468, checked in by chronos, 5 months ago
  • Added: High DPI support integrated into trunk branch. It can be enabled by adding DPI define to compiler parameters for main project and packages.
File size: 755 bytes
Line 
1{ This file was automatically created by Lazarus. Do not edit!
2 This source is only used to compile and install the package.
3 }
4
5unit DpiControlsPackage;
6
7{$warn 5023 off : no warning about unused units}
8interface
9
10uses
11 DpiControls, Dpi.PixelPointer, Dpi.Forms, Dpi.Controls, Dpi.Graphics,
12 Dpi.Common, Dpi.Menus, Dpi.ComCtrls, Dpi.StdCtrls, Dpi.ExtCtrls, Dpi.Grids,
13 Dpi.Spin, NativePixelPointer, LazarusPackageIntf;
14
15implementation
16
17procedure Register;
18begin
19 RegisterUnit('DpiControls', @DpiControls.Register);
20 RegisterUnit('Dpi.Menus', @Dpi.Menus.Register);
21 RegisterUnit('Dpi.StdCtrls', @Dpi.StdCtrls.Register);
22 RegisterUnit('Dpi.ExtCtrls', @Dpi.ExtCtrls.Register);
23end;
24
25initialization
26 RegisterPackage('DpiControls', @Register);
27end.
Note: See TracBrowser for help on using the repository browser.