/
Edwar
/
cam-api-examples
Обзор
Документация
Войти
/
Edwar
/
cam-api-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ExtensionUtility/ExtensionUtilityDelphi/project/main/ExtensionUtilityDelphi.dpr
27 строк
1011 B
bond
First examples
26 сен 2024, 11:12
26 сен 2024, 11:12
19bd5ac
Код
Авторство
О чём код?
library ExtensionUtilityDelphi; { 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. Important note about VCL usage: when this DLL will be implicitly loaded and this DLL uses TWicImage / TImageCollection created in any unit initialization section, then Vcl.WicImageInit must be included into your library's USES clause. } uses System.SysUtils, System.Classes, Main in 'src\Main.pas', Extension in 'src\Extension.pas'; {$R *.res} begin end.