1 Star 0 Fork 0

Ny/python4delphi

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
DemoModule.dpr 860 Bytes
一键复制 编辑 原始数据 按行查看 历史
pyscripter 提交于 2020-09-23 16:58 +08:00 . Restructure folders
library DemoModule;
{ 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,
uMain in 'uMain.pas';
{$I Definition.Inc}
exports
PyInit_DemoModule;
{$IFDEF MSWINDOWS}
{$E pyd}
{$ENDIF}
{$IFDEF LINUX}
{$SONAME 'DemoModule'}
{$ENDIF}
begin
end.
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Delphi
1
https://gitee.com/Xdu2050/python4delphi.git
git@gitee.com:Xdu2050/python4delphi.git
Xdu2050
python4delphi
python4delphi
master

搜索帮助