I'm currently searching a way to call function that are inside a C++ dll. I work with C# and C++ but it seems I can't use reflection on a dll and calling function by their name with a string.
I saw some post on ctypes, but I'm not sure if it would fit my needs. What I need is a python library that could introspect a C++ dll, then I could call function, like for say getFood() with a string like myDll.call('getFood').
Thank you.