Currently I am accessing my MFC C++ dll using my python script and everything works well so far. My next step is to continuously access my .dll and carry on various operations with it simultaneously from which I feel “Multi-threading” is a very good option. Could you guys suggest me any good links to learn on multi-threading and implement in my application?
Thanks in advance.
I am guessing this tutorial would of great help to you considering what you are planning to do. Additionally, you can look into ctypes for carrying out the operations the way you want.