Load a .so object with QLibrary from PyQt
-
@ilian What init function do you mean? Is it a function from your library? If so then sip.voidptr probably means that it could not resolve the function.
See http://doc.qt.io/qt-5.9/qlibrary.html#resolve, you need to export your functions to be able to resolve them. -
@jsulm I have an init function
extern "C" int init(int argc, char **argv) { QApplication a(argc, argv); MyWidget w; w.init(); return a.exec(); }
resolve()
returns a non null value, which issip.voidptr
, and I am expecting this to be aC
function pointer but, I have no idea how to call it. -
-
@jsulm I've made a similar C++ program with the function pointer, and it does what I want, open a widget and enters it's event loop. In short, as C++ program, loading the library everything is fine, as PyQt - it's not, or the reslove form PyQt and that sip.voidptr are some weird stuff, we know not of.
-
@ilian said in Load a .so object with QLibrary from PyQt:
sip.voidptr
this is not weird stuff :-)
It is documented, I just don't know how to use it if it contains a function pointer - I could not find anything in SIP documentation for this use case.