Windows系统Python直接调用C++ DLL
2019-08-16 07:56:01来源:博客园 阅读 ()
Windows系统Python直接调用C++ DLL
环境:Window 10,VS 2019, Python 2.7.12, 64bit
1,打开 VS 2019,新建C++ Windows 动态链接库工程 Example,加入下列文件,如果Python是64位的则在VS中 Solution platforms 选择 x64 编译成64位的 DLL;
Example.h
1 #pragma once 2 3 #ifndef CPP_EXPORTS 4 #define CPP_EXPORTS 5 #endif 6 7 #ifdef CPP_EXPORTS 8 #define CPP_API _declspec(dllexport) 9 #else 10 #define CPP_API _declspec(dllimport) 11 #endif 12 13 #include <iostream> 14 using namespace std; 15 16 #ifdef __cplusplus 17 extern "C" 18 { 19 #endif 20 21 CPP_API int __cdecl getInt(); 22 CPP_API const char* __cdecl getString(); 23 CPP_API void __cdecl setString(const char* str); 24 25 #ifdef __cplusplus 26 } 27 #endif
Example.cpp
1 #include "pch.h" 2 #include "Example.h" 3 4 CPP_API int __cdecl getInt() 5 { 6 return 5; 7 } 8 9 CPP_API const char* __cdecl getString() 10 { 11 return "hello"; 12 } 13 14 CPP_API void __cdecl setString(const char* str) 15 { 16 cout << str << endl; 17 }
编译,得到 Example.dll
2, 打开 Command,cd 到 Example.dll 所在目录,输入 Python2,进入python环境
>>> from ctypes import *
>>> dll = CDLL("Example.dll")
>>> print dll.getInt()
5
>>> getStr = dll.getString
>>> getStr.restype = c_char_p
>>> pChar = getStr()
>>> print c_char_p(pChar).value
hello
>>> setStr = dll.setString
>>> setStr.argtypes = [c_char_p]
>>> pStr = create_string_buffer("hello")
>>> setStr(pStr)
hello
-1043503984
原文链接:https://www.cnblogs.com/gujf2016/p/11282352.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:【模板】C++高精度加法
下一篇:C++浮点数据的输出控制
- windows7 + Qt(MSVC2017) + VS2019安装配置 2020-04-25
- 学生信息管理系统.cpp(大二上) 2020-04-23
- windows10环境下QtCreator中出现skipping incompatible xxx 2020-03-31
- Windows 创建 .gdbinit 提示必须键入文件名 2020-03-17
- vscode C++ 程序 windows 2020-03-17
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash