[pywin32-checkins] /hgroot/pywin32/pywin32: 2 new changesets
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: <pyw...@li...> - 2013-12-25 03:27:03
|
changeset baff3aedce78 in /hgroot/pywin32/pywin32 details: http://pywin32.hg.sourceforge.net/hgweb/pywin32/pywin32/hgroot/pywin32/pywin32?cmd=changeset;node=baff3aedce78 summary: Added tag 218.5 for changeset 2d79b6bd94bc changeset 7a6e7f8c56cf in /hgroot/pywin32/pywin32 details: http://pywin32.hg.sourceforge.net/hgweb/pywin32/pywin32/hgroot/pywin32/pywin32?cmd=changeset;node=7a6e7f8c56cf summary: Add win32gui.RegisterHotKey diffstat: .hgtags | 1 + CHANGES.txt | 11 ++++++++++- win32/src/win32gui.i | 8 ++++++++ 3 files changed, 19 insertions(+), 1 deletions(-) diffs (48 lines): diff -r 2d79b6bd94bc -r 7a6e7f8c56cf .hgtags --- a/.hgtags Mon Dec 16 09:50:55 2013 -0500 +++ b/.hgtags Tue Dec 24 22:25:45 2013 -0500 @@ -50,3 +50,4 @@ b7968cc5d12a148df3005979adb804ab79dd1d17 b218 ed400a27739ff3ff7a850e69f574a1ad66de6c5e b218 e97376eb14b6d95e79e01e1bf68ef8427bcbafdc b218.3 +2d79b6bd94bc145f7f5a6e1c63d626737fc98e6c 218.5 diff -r 2d79b6bd94bc -r 7a6e7f8c56cf CHANGES.txt --- a/CHANGES.txt Mon Dec 16 09:50:55 2013 -0500 +++ b/CHANGES.txt Tue Dec 24 22:25:45 2013 -0500 @@ -1,4 +1,4 @@ -A changelog for recent builds as pasted into the sourceforge page. +A changelog for recent builds as pasted into the sourceforge page. Generally created by hand after running: hg log -rb2xx: > log.out @@ -38,6 +38,15 @@ Add interfaces IPropertyChange, IPropertyChangeArray, and IObjectWithPropertyKey Add functions PSCreateSimplePropertyChange, PSCreatePropertyChangeArray, and SHSetDefaultProperties +* win32crypt + Add functions and objects for handling certificates and certificate stores + +* win32gui + Add RegisterHotKey + +* win32evtlog + Add several more Evt* functions (Vista+ event log API) + Since build 217: ---------------- * mapiutil.py GetPropTagName has been modified to return the fully qualified diff -r 2d79b6bd94bc -r 7a6e7f8c56cf win32/src/win32gui.i --- a/win32/src/win32gui.i Mon Dec 16 09:50:55 2013 -0500 +++ b/win32/src/win32gui.i Tue Dec 24 22:25:45 2013 -0500 @@ -7521,3 +7521,11 @@ // It is generally not necessary to call this function manually, but in some cases, // handle values may be extracted via the struct module and need to be closed explicitly. BOOLAPI UnregisterDeviceNotification(HANDLE); + +// @pyswig |RegisterHotKey|Registers a hotkey for a window +// @pyseeapi RegisterHotKey +// @pyparm <o PyHANDLE>|hWnd||Handle to window that will receive WM_HOTKEY messages +// @pyparm int|id||Unique id to be used for the hot key +// @pyparm int|Modifiers||Control keys, combination of win32con.MOD_* +// @pyparm int|vk||Virtual key code +BOOLAPI RegisterHotKey(HWND, int, UINT, UINT); |