I\'m using ctypes to load a DLL in Python. This works great.
Now we\'d like to be able to reload that DLL at runtime.
The straightforward approach would s
If you need this functionality, you could write 2 dlls where dll_A loads/Unloads library from dll_B. Use dll_A as as python interface-loader and passthrough for functions in dll_B.