-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathamScript.Bundle.API.pas
More file actions
43 lines (32 loc) · 1.24 KB
/
amScript.Bundle.API.pas
File metadata and controls
43 lines (32 loc) · 1.24 KB
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
39
40
41
42
43
unit amScript.Bundle.API deprecated 'Feature not available';
(*
* Copyright © 2016 Anders Melander
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*)
interface
{$ifdef FEATURE_SCRIPT_BUNDLE}
const
sScriptBundleComment = 'Script Bundle';
sScriptBundleManifestFilename = 'manifest.xml';
sScriptBundleManifestTag = 'script.bundle';
cScriptBundleManifestVersion = 0;
const
sScriptBundleFileType = '.bundle';
sScriptBundleProjectFileType = '.bundleproj';
resourcestring
sScriptFileFilter = 'Script add-in files (*.pas)|*.pas';
sPackageInstallerFileFilter = 'Script add-in package files (*.spackage)|*.spackage';
sScriptBundleFileFilter = 'Script add-in bundle files (*.bundle)|*.bundle';
sScriptBundleProjectFileFilter = 'Script bundle project files (*.bundleproj)|*.bundleproj';
const
// Windows explorer file type classes
sScriptBundleFileClass = 'dwscript.bundle';
sScriptBundleProjectFileClass = 'dwscript.bundleproject';
// sScriptPackageInstallerFileClass = 'dwscript.package';
// sScriptSourceFileClass = 'dwscript.script';
{$endif FEATURE_SCRIPT_BUNDLE}
implementation
end.