Re: [python-win32] win32com.client: Struggling with dynamic dispatch, behavior differs when debugging

2016-09-29 Thread Dominik Heller
Hi Tim, thanks for your reply, much appreciated. > Do you have an IDL file or a C++ header file? It might be possible for > you to build a type library. I do even have the complete C++ source. However I currently have no possibility to generate the IDL-files in an automated way and it's too much

Re: [python-win32] win32com.client: Struggling with dynamic dispatch, behavior differs when debugging

2016-09-29 Thread Tim Roberts
Dominik Heller wrote: > >> >>> obj_2.DoSomething(“MyArgument”) # doesn’t work >> What is the C++ signature of this method? > This would be the declaration in the C++ class header: > > class CMyCommand : public CCmdTarget { > // ... > afx_msg void DoSomething(LPCTSTR message); > // ... > }; >