/
Edwar
/
cam-api-examples
Обзор
Документация
Войти
/
Edwar
/
cam-api-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
PLMIntegration/PLMExtensionDelphi/project/main/PLMExtensionDelphi.dpr
29 строк
1 KB
rasilyabag
plm integration examples
11 окт 2024, 17:10
11 окт 2024, 17:10
2dd8ec0
Код
Авторство
О чём код?
library PLMExtensionDelphi; { 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, TestPLMInterface in 'src\TestPLMInterface.pas', TestPLMParameters in 'src\TestPLMParameters.pas', TestPLMItems in 'src\TestPLMItems.pas', Main in 'src\Main.pas'; {$R *.res} begin end.