[pywin32-checkins] pywin32 setup.py, 1.81.2.3, 1.81.2.4 CHANGES.txt, 1.26, 1.26.2.1
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2008-11-02 11:52:08
|
Update of /cvsroot/pywin32/pywin32 In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv17542 Modified Files: Tag: py3k setup.py CHANGES.txt Log Message: win32com.axcontrol gets support for interfaces OleControlSite, OleInPlaceActiveObject, OleInPlaceFrame and OleInPlaceUIWindow interfaces and OleTranslateAccelerator function. Index: setup.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/setup.py,v retrieving revision 1.81.2.3 retrieving revision 1.81.2.4 diff -C2 -d -r1.81.2.3 -r1.81.2.4 *** setup.py 1 Oct 2008 13:08:17 -0000 1.81.2.3 --- setup.py 2 Nov 2008 11:52:02 -0000 1.81.2.4 *************** *** 1535,1540 **** WinExt_win32com('axcontrol', pch_header="axcontrol_pch.h", sources=(""" ! %(axcontrol)s/AXControl.cpp %(axcontrol)s/PyIOleControl.cpp %(axcontrol)s/PyIOleInPlaceSiteEx.cpp %(axcontrol)s/PyISpecifyPropertyPages.cpp %(axcontrol)s/PyIObjectWithSite.cpp %(axcontrol)s/PyIOleInPlaceObject.cpp %(axcontrol)s/PyIOleInPlaceSiteWindowless.cpp %(axcontrol)s/PyIViewObject.cpp --- 1535,1543 ---- WinExt_win32com('axcontrol', pch_header="axcontrol_pch.h", sources=(""" ! %(axcontrol)s/AXControl.cpp ! %(axcontrol)s/PyIOleControl.cpp %(axcontrol)s/PyIOleControlSite.cpp ! %(axcontrol)s/PyIOleInPlaceActiveObject.cpp %(axcontrol)s/PyIOleInPlaceSiteEx.cpp %(axcontrol)s/PyISpecifyPropertyPages.cpp + %(axcontrol)s/PyIOleInPlaceUIWindow.cpp %(axcontrol)s/PyIOleInPlaceFrame.cpp %(axcontrol)s/PyIObjectWithSite.cpp %(axcontrol)s/PyIOleInPlaceObject.cpp %(axcontrol)s/PyIOleInPlaceSiteWindowless.cpp %(axcontrol)s/PyIViewObject.cpp Index: CHANGES.txt =================================================================== RCS file: /cvsroot/pywin32/pywin32/CHANGES.txt,v retrieving revision 1.26 retrieving revision 1.26.2.1 diff -C2 -d -r1.26 -r1.26.2.1 *** CHANGES.txt 10 Aug 2008 13:13:20 -0000 1.26 --- CHANGES.txt 2 Nov 2008 11:52:02 -0000 1.26.2.1 *************** *** 9,12 **** --- 9,16 ---- ---------------- + * win32com.axcontrol gets support for interfaces OleControlSite, + OleInPlaceActiveObject, OleInPlaceFrame and OleInPlaceUIWindow interfaces + and OleTranslateAccelerator function. + * MAPI gets support for IMAPIAdviseSink |