[pywin32-checkins] pywin32/com/win32comext/mapi/src mapiutil.cpp,1.3,1.4
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2006-03-16 08:13:45
|
Update of /cvsroot/pywin32/pywin32/com/win32comext/mapi/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21858 Modified Files: mapiutil.cpp Log Message: Ensure IMAPIStatus and IProfSect interfaces autoconverted on return. Index: mapiutil.cpp =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32comext/mapi/src/mapiutil.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** mapiutil.cpp 27 Feb 2003 21:57:48 -0000 1.3 --- mapiutil.cpp 16 Mar 2006 08:13:42 -0000 1.4 *************** *** 37,43 **** pIID = &IID_IABContainer; break; - case MAPI_STORE: - case MAPI_PROFSECT: case MAPI_STATUS: case MAPI_FORMINFO: pIID = &IID_IUnknown; --- 37,48 ---- pIID = &IID_IABContainer; break; case MAPI_STATUS: + pIID = &IID_IMAPIStatus; + break; + case MAPI_PROFSECT: + pIID = &IID_IProfSect; + break; + + case MAPI_STORE: case MAPI_FORMINFO: pIID = &IID_IUnknown; |