forked from Memnarch/Delphinus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDN.Types.pas
33 lines (26 loc) · 988 Bytes
/
DN.Types.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
{
#########################################################
# Copyright by Alexander Benikowski #
# This unit is part of the Delphinus project hosted on #
# https://github.com/Memnarch/Delphinus #
#########################################################
}
unit DN.Types;
interface
type
TMessageType = (mtNotification, mtWarning, mtError);
TMessageEvent = procedure(AMessageType: TMessageType; const AMessage: string) of object;
TPathType = (tpSearchPath, tpBrowsingPath);
TCompilerVersion = Single;
const
CSourceSubDir = 'Source';
CMacPackageExtension = '.dylib';
CMacPackagePrefix = 'bpl';
CInstallFile = 'Delphinus.Install.json';
CUninstallFile = 'Delphinus.Uninstall.json';
CInfoFile = 'Delphinus.Info.json';
CCacheFile = 'Delphinus.Cache.json';
CInstallFileFilter = 'InstallationFile|' + CInstallFile;
CUninstallFileFilter = 'UninstallFile|' + CUninstallFile;
implementation
end.