gpt4 book ai didi

Python C 头文件

转载 作者:行者123 更新时间:2023-11-30 17:29:45 26 4
gpt4 key购买 nike

我正在尝试将 .so 库导入到 python 代码中以使用 c 函数。我认为使用

from ctypes import *
import ctypes
lib = CDLL('./libcaenhvwrapper.so.5.56')

工作正常。我需要使用一些在头文件中定义的用户定义类型但我无法访问它们。

提前谢谢

最佳答案

这些类型不在 ctypes 模块加载的 .so 文件中。

C 类型不是这样工作的,它们是在 header 中声明的,并且您必须拥有 header 才能使用 (C) 库,即使是来自 C 的库。

您将必须使用各种 ctypes API 在 Python 中重新创建类型。请参阅this part of the tutorial例如,如何使用 structunion 类型。

关于Python C 头文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25528204/

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