[pywin32-checkins] /hgroot/pywin32/pywin32: Add PyIMapiSession::AdminServices metho...
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: <pyw...@li...> - 2016-04-16 06:47:34
|
changeset 85c1c99b1cb8 in /hgroot/pywin32/pywin32 details: http://pywin32.hg.sourceforge.net/hgweb/pywin32/pywin32/hgroot/pywin32/pywin32?cmd=changeset;node=85c1c99b1cb8 summary: Add PyIMapiSession::AdminServices method (Nick Czeczulin via patch #161) diffstat: CHANGES.txt | 2 ++ com/win32comext/mapi/src/PyIMAPISession.i | 6 ++++++ 2 files changed, 8 insertions(+), 0 deletions(-) diffs (25 lines): diff -r 7a9466f06a9b -r 85c1c99b1cb8 CHANGES.txt --- a/CHANGES.txt Sat Apr 16 14:09:27 2016 +1000 +++ b/CHANGES.txt Sat Apr 16 16:27:49 2016 +1000 @@ -6,6 +6,8 @@ Since build 220: ---------------- +* Add PyIMapiSession::AdminServices method (Nick Czeczulin via patch #161) + * Allow win32com.client.CastTo() to have a typelib specified, which will be used to locate the object definition (Pieter Aarnoutse via patch #136) diff -r 7a9466f06a9b -r 85c1c99b1cb8 com/win32comext/mapi/src/PyIMAPISession.i --- a/com/win32comext/mapi/src/PyIMAPISession.i Sat Apr 16 14:09:27 2016 +1000 +++ b/com/win32comext/mapi/src/PyIMAPISession.i Sat Apr 16 16:27:49 2016 +1000 @@ -313,3 +313,9 @@ IID *INPUT_NULLOK, // @pyparm <o PyIID>|iid||The IID of the interface, or None. unsigned long flags, // @pyparm int|flags||Flags that control the opening. IProfSect **OUTPUT); + + +// @pyswig <o PyIMsgServiceAdmin>|AdminServices|Provides access to a message service administration object for making changes to the message services. +HRESULT AdminServices( + unsigned long ulFlags=0, // @pyparm int|flags|0|reserved; must be zero. + IMsgServiceAdmin **OUTPUT); |