ctypes python3,如何在python3中使用ctypes void**指针
我想通过它的DLL连接一个光谱仪,其中一个函数被定义为UINT UAI_SpectrometerOpen(unsigned int dev, void** handle, unsigned int VID, unsigned int PID)在文件中,dev指定了光谱仪的索引返回分光计手柄指针VID规定PID提供指定PIDdev,VID,PID都是已知的,但我不知道如何设置句柄。我现在的代码是^...