python调用Delphi写的Dll代码示例


Posted in Python onDecember 05, 2017

首先看下Delphi单元文件基本结构:

unit Unit1;  //单元文件名 
interface   //这是接口关键字,用它来标识文件所调用的单元文件 
uses     //程序用到的公共单元 
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs; 

type     //这里定义了程序所用的组件,一些类,以及组件所对应的过程、事件 
TForm1 = class(TForm) 
private   //定义私有变量和私有过程 
  { Private declarations }
public   //定义公共变量和公共过程 
  { Public declarations }
end; 
  
var      //定义程序使用的公共变量 
Form1: TForm1; 

implementation //程序代码实现部分 

{$R *.dfm}
  
end.

Delphi单元如下(输出hello.dll):

unit hellofun;

interface

function getint():integer;stdcall;
function sayhello(var sname:PAnsiChar):PAnsiChar;stdcall;
implementation

function getint():integer;stdcall;
begin
 result:=888;
end;
function sayhello(var sname:PAnsiChar):PAnsiChar;stdcall;
begin
 sname:='ok!';
 result:='hello,garfield !';
end;

end.
library hello;

{ 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
 System.SysUtils,
 System.Classes,
 hellofun in 'hellofun.pas';

{$R *.res}

exports
 getint,
 sayhello;

begin
end.

python中调用如下:

import ctypes

def main():
  dll=ctypes.windll.LoadLibrary("hello.dll")
  ri=dll.getint()
  print(ri)

  s=ctypes.c_char_p()
  rs=ctypes.c_char_p()
  rs=dll.sayhello(ctypes.byref(s))
  print(s)
  print(ctypes.c_char_p(rs))

if __name__ == '__main__':
  main()

运行Python,输出如下:

>>> 
888
c_char_p(b'ok!')
c_char_p(b'hello,garfield !')
>>>

好了,我们可以让python完成部分功能在Delphi中调用,也可以用Delphi完成部分功能在Python中调用。

以上程序在DelphiXE2及Python3.2中调试通过。

总结

以上就是本文关于python调用Delphi写的Dll代码示例的全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站其他相关专题,如有不足之处,欢迎留言指出。感谢朋友们对本站的支持!

Python 相关文章推荐
python Socket之客户端和服务端握手详解
Sep 18 Python
Python的CGIHTTPServer交互实现详解
Feb 08 Python
Python基于Flask框架配置依赖包信息的项目迁移部署
Mar 02 Python
Python中property函数用法实例分析
Jun 04 Python
python itchat给指定联系人发消息的方法
Jun 11 Python
Python OpenCV 调用摄像头并截图保存功能的实现代码
Jul 02 Python
Python完成哈夫曼树编码过程及原理详解
Jul 29 Python
Python实现时间序列可视化的方法
Aug 06 Python
Python3.6+selenium2.53.6自动化测试_读取excel文件的方法
Sep 06 Python
Python如何获取Win7,Win10系统缩放大小
Jan 10 Python
Python selenium爬取微博数据代码实例
May 22 Python
tensorflow 2.1.0 安装与实战教程(CASIA FACE v5)
Jun 30 Python
Python字典数据对象拆分的简单实现方法
Dec 05 #Python
python reduce 函数使用详解
Dec 05 #Python
有趣的python小程序分享
Dec 05 #Python
详细分析python3的reduce函数
Dec 05 #Python
Python数据可视化正态分布简单分析及实现代码
Dec 04 #Python
Python编程实现二分法和牛顿迭代法求平方根代码
Dec 04 #Python
Python编程给numpy矩阵添加一列方法示例
Dec 04 #Python
You might like
在修改准备发的批量美化select+可修改select时,在非IE下发现了几个问题
2007/01/09 Javascript
JQuery UI DatePicker中z-index默认为1的解决办法
2010/09/28 Javascript
输入自动提示搜索提示功能的使用说明:sugggestion.txt
2013/09/02 Javascript
javascript中Function类型详解
2015/04/28 Javascript
jQuery自定义动画函数实例详解(附demo源码)
2015/12/10 Javascript
JS判断字符串字节数并截取长度的方法
2016/03/05 Javascript
jQuery购物车插件jsorder用法(支持后台处理程序直接转换成DataTable处理)
2016/06/08 Javascript
EasyUI加载完Html内容样式渲染完成后显示
2016/07/25 Javascript
react-router4 嵌套路由的使用方法
2017/07/24 Javascript
vue项目总结之文件夹结构配置详解
2017/12/13 Javascript
jQuery实现百度图片移入移出内容提示框上下左右移动的效果
2018/06/05 jQuery
泛谈JS逻辑判断选择器 || &&
2019/05/24 Javascript
Element的el-tree控件后台数据结构的生成以及方法的抽取
2020/03/05 Javascript
JavaScript设计模式--桥梁模式引入操作实例分析
2020/05/23 Javascript
[00:29]2019完美世界全国高校联赛(秋季赛)总决赛海口落幕
2019/12/10 DOTA
使用Python和xlwt向Excel文件中写入中文的实例
2018/04/21 Python
浅谈pyqt5中信号与槽的认识
2019/02/17 Python
python urllib爬虫模块使用解析
2019/09/05 Python
Python 调用有道翻译接口实现翻译
2020/03/02 Python
Python 判断时间是否在时间区间内的实例
2020/05/16 Python
python3通过qq邮箱发送邮件以及附件
2020/05/20 Python
Python+OpenCV图像处理——实现直线检测
2020/10/23 Python
Python实现对word文档添加密码去除密码的示例代码
2020/12/29 Python
HTML5验证以及日期显示的实现详解
2013/07/05 HTML / CSS
NIHAOMARKET官方海外旗舰店:意大利你好华人超市
2018/01/27 全球购物
衰败城市英国官网:Urban Decay英国
2020/04/29 全球购物
计算机专业个人求职信范例
2013/09/23 职场文书
房地产出纳岗位职责
2013/12/01 职场文书
《美丽的彩虹》教学反思
2014/02/25 职场文书
学校春季防火方案
2014/06/08 职场文书
做一个有道德的人活动实施方案
2014/08/23 职场文书
劳动争议和解协议书范本
2014/11/20 职场文书
出纳年终工作总结2014
2014/12/05 职场文书
高三毕业评语
2014/12/31 职场文书
手把手教你使用TensorFlow2实现RNN
2021/07/15 Python
Windows Server 2008配置防火墙策略详解
2022/06/28 Servers