[pywin32-checkins] /hgroot/pywin32/pywin32: More source and header files missing fr...
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: <pyw...@li...> - 2014-03-03 14:23:34
|
changeset 50ddf812a6d7 in /hgroot/pywin32/pywin32 details: http://pywin32.hg.sourceforge.net/hgweb/pywin32/pywin32/hgroot/pywin32/pywin32?cmd=changeset;node=50ddf812a6d7 summary: More source and header files missing from source dist diffstat: MANIFEST.in | 4 ++++ com/win32comext/shell/src/shell.cpp | 2 +- setup.py | 1 + 3 files changed, 6 insertions(+), 1 deletions(-) diffs (44 lines): diff -r 7d1d77ba3759 -r 50ddf812a6d7 MANIFEST.in --- a/MANIFEST.in Sun Mar 02 18:37:14 2014 -0500 +++ b/MANIFEST.in Mon Mar 03 09:22:38 2014 -0500 @@ -28,6 +28,9 @@ include win32/src/*.manifest include win32/src/PerfMon/perfmondata.def include win32/src/PerfMon/*.h +include win32/src/win32crypt/*.h +include win32/src/win32net/*.h +include win32/src/win32wnet/*.h include win32/License.txt # COM include com/pythoncom.py @@ -74,6 +77,7 @@ include com/win32comext/mapi/src/*.h include com/win32comext/mapi/demos/*.py include com/win32comext/propsys/test/*.py +include com/win32comext/propsys/src/*.h include com/win32comext/shell/src/*.h include com/win32comext/shell/demos/servers/*.py include com/win32comext/shell/demos/servers/*.propdesc diff -r 7d1d77ba3759 -r 50ddf812a6d7 com/win32comext/shell/src/shell.cpp --- a/com/win32comext/shell/src/shell.cpp Sun Mar 02 18:37:14 2014 -0500 +++ b/com/win32comext/shell/src/shell.cpp Mon Mar 03 09:22:38 2014 -0500 @@ -3650,7 +3650,7 @@ PYCOM_INTERFACE_FULL(RelatedItem), PYCOM_INTERFACE_FULL(TransferMediumItem), // based on IRelatedItem with no extra methods PYCOM_INTERFACE_FULL(CurrentItem), // based on IRelatedItem with no extra methods - PYCOM_INTERFACE_FULL(CurrentItem), // based on IRelatedItem with no extra methods + PYCOM_INTERFACE_FULL(DisplayItem), // based on IRelatedItem with no extra methods PYCOM_INTERFACE_FULL(IdentityName), // based on IRelatedItem with no extra methods // These require Windows 7 SDK to build #if WINVER >= 0x0601 diff -r 7d1d77ba3759 -r 50ddf812a6d7 setup.py --- a/setup.py Sun Mar 02 18:37:14 2014 -0500 +++ b/setup.py Mon Mar 03 09:22:38 2014 -0500 @@ -1984,6 +1984,7 @@ %(shell)s/PyICustomDestinationList.cpp %(shell)s/PyIDefaultExtractIconInit.cpp %(shell)s/PyIDeskBand.cpp + %(shell)s/PyIDisplayItem.cpp %(shell)s/PyIDockingWindow.cpp %(shell)s/PyIDropTargetHelper.cpp %(shell)s/PyIEnumExplorerCommand.cpp |