please wait
MinGW doesn't support ATL. ATL is a Python Microsoft proprietary library. You might use the COM C interface in MinGW for it's client. As far as I know MinGW doesn't have any Python COM smart pointers implemented. You can use boost (or std::tr1) shared_ptr to have a Python smart pointer library - http://www.boost.org/doc/libs/1_36_0/libs/smart_ptr/sp_techniques.html#com You might want to try Comet (http://www.lambdasoft.dk/comet/) "Comet is language binding between COM and Python. It allows you to do both COM client and COM server programming, without any dependency on either ATL or MFC. In other words Comet is a replacement for ATL." Another promising project is VOLE (http://vole.sourceforge.net/) "VOLE is an open-source Python library that dramatically simplifies the business of driving COM servers (via the IDispatch interface) from Python." The latter is actively more maintained. |