V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
aizya
V2EX  ›  Python

关于 Python 调用 dll 求助

  •  
  •   aizya · 141 天前 · 973 次点击
    这是一个创建于 141 天前的主题,其中的信息可能已经有所发展或是发生改变。
    python 小白,现在需要使用 python 去调一个第三方的 dll 文件,dll 没法改,下面是 dll 中的数据结构
    /*----------------------------------------------------------------------------
    |
    | Define pointers
    |
    -----------------------------------------------------------------------------*/
    
    #ifndef PL_BYTE
    #define PL_BYTE uint8_t *
    #endif
    
    /*----------------------------------------------------------------------------
    |
    | Define structs
    |
    -----------------------------------------------------------------------------*/
    
    typedef struct DEMO_t
    {
      uint16_t        length;
      PL_BYTE       payLoad;                    /* 长度取决于 length 的值*/
    } DEMO;
    
    这个 dll 中有个 read 方法,可以从文件中读取出对应的 DEMO 数据。下面是 python 的代码:
    # 定义 BL_LPBYTE 类型
    BL_LPBYTE = ctypes.POINTER(uint8_t)
    
    class DEMO_DATA(ctypes.Structure):
        _fields_ = [
            ("length", ctypes.c_uint16),
            ("payLoad", BL_LPBYTE),
        ]
    
    # 加载 dll
    dll = ctypes.CDLL('demo.dll')
    
    # 定义 dll 中的 Read 方法, 其实我也不太懂为什么要这样
    dll.Read.argtypes = [ctypes.c_void_p, ctypes.POINTER(DEMO)]
    dll.dll.restype = ctypes.c_int32
    
    # 创建文件,数据源
    handle = dll.Create('file.target')
    
    # 创建结构体
    demo = DEMO()
    
    # 读取数据,正常传入文件以及结构体,dll 会自动像结构体中存入数据
    dll.Read(handle,ctypes.byref(demo))
    

    问题: 在调用 dll 提取数据的时候,结构体中 length 字段是正常的,ctypes 定义了 BL_LPBYTE 这部分数据一直都拿不到。 请教大家应该要怎么做?

    2 条回复    2023-12-14 11:31:11 +08:00
    NessajCN
        2
    NessajCN  
       141 天前
    BL_LPBYTE = ctypes.POINTER(ctypes.c_uint8)
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   936 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 39ms · UTC 23:18 · PVG 07:18 · LAX 16:18 · JFK 19:18
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.