-
Notifications
You must be signed in to change notification settings - Fork 63
/
DN.DelphiInstallation.Intf.pas
38 lines (32 loc) · 1.07 KB
/
DN.DelphiInstallation.Intf.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
unit DN.DelphiInstallation.Intf;
interface
uses
Graphics,
DN.Types;
type
IDNDelphiInstallation = interface
['{B460C736-86F8-49DE-AD72-53BB6D8D71D6}']
function GetIcon: TIcon;
function GetName: string;
function GetShortName: string;
function GetRoot: string;
function GetDirectory: string;
function GetApplication: string;
function GetEdition: string;
function GetBDSVersion: string;
function GetBDSCommonDir: string;
function GetSupportedPlatforms: TDNCompilerPlatforms;
function IsRunning: Boolean;
property Name: string read GetName;
property ShortName: string read GetShortName;
property Edition: string read GetEdition;
property BDSVersion: string read GetBDSVersion;
property Icon: TIcon read GetIcon;
property Root: string read GetRoot;
property Directory: string read GetDirectory;
property Application: string read GetApplication;
property BDSCommonDir: string read GetBDSCommonDir;
property SupportedPlatforms: TDNCompilerPlatforms read GetSupportedPlatforms;
end;
implementation
end.