gpt4 book ai didi

c++ - Python ctypes 调用简单的 c++ dll

转载 作者:搜寻专家 更新时间:2023-10-31 01:48:47 24 4
gpt4 key购买 nike

我真的很难使用 ctypes 从 python 调用一个简单的 c++ dll

下面是我的 C++ 代码:

#ifdef __cplusplus
extern "C"{
#endif
__declspec(dllexport) char const* greet()
{
return "hello, world";
}
#ifdef __cplusplus
}
#endif

...

我的 Python 代码:

import ctypes
testlib = ctypes.CDLL("CpLib.dll");
print testlib.greet();

当我运行我的 py 脚本时,我得到了这个奇怪的返回值 -97902232

请提供帮助。

最佳答案

你没有告诉 ctypes 返回值是什么类型,所以它假定它是一个整数。但它实际上是一个指针。设置 restype 属性让 ctypes 知道如何解释返回值。

import ctypes 
testlib = ctypes.CDLL("CpLib.dll")
testlib.greet.restype = ctypes.c_char_p
print testlib.greet()

关于c++ - Python ctypes 调用简单的 c++ dll,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17286044/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com