-
Notifications
You must be signed in to change notification settings - Fork 56
/
kntutils.dpr
60 lines (44 loc) · 2.03 KB
/
kntutils.dpr
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
library kntutils;
(****** LICENSE INFORMATION **************************************************
- 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/.
------------------------------------------------------------------------------
(c) 2000-2005 Marek Jedlinski <[email protected]> (Poland)
(c) 2007-2015 Daniel Prado Velasco <[email protected]> (Spain) [^]
[^]: Changes since v. 1.7.0. Fore more information, please see 'README.md'
and 'doc/README_SourceCode.txt' in https://github.com/dpradov/keynote-nf
*****************************************************************************)
{ Important note about DLL memory management: ShareMem must be the
first unit in your library's USES clause AND your project's (select
Project-View Source) USES clause if your DLL exports any procedures or
functions that pass strings as parameters or function results. This
applies to all strings passed to and from your DLL--even those that
are nested in records and classes. ShareMem is the interface unit to
the BORLNDMM.DLL shared memory manager, which must be deployed along
with your DLL. To avoid using BORLNDMM.DLL, pass string information
using PChar or ShortString parameters. }
uses
SysUtils,
Classes,
gf_misc in 'support\gf_misc.pas',
gf_strings in 'support\gf_strings.pas',
gf_files in 'support\gf_files.pas',
dll_Main in 'dll_Main.pas',
kn_DLLInterface in 'kn_DLLInterface.pas',
dll_Keyboard in 'general\dll_Keyboard.pas',
dll_KBD in 'general\dll_KBD.pas' {Form_KBD},
MSWordConverter in 'editor\MSWordConverter.pas',
MSOfficeConverters in 'editor\MSOfficeConverters.pas',
dll_HotKey in 'general\dll_HotKey.pas'
;
{$R *.RES}
exports
DlgCustomizeKeyboard,
MSWordConvertHTMLToRTF,
MSWordConvertRTFToHTML,
MSWordQuit,
TextConvImportAsRTF,
TextConvExportRTF;
begin
end.