I have a C++ program and it has sort of plugin structure: when program starts up, it\'s looking for dll in the plugin folder with certain exported function signatures, such
I'd imagine it'd be difficult to call it directly, with Cython depending so much on the Python runtime.
Your best bet is to embed a Python interpreter directly inside your app, e.g. as described in this answer, and call your Cython code from the interpreter. That's what I would do.