[Nvda-dev] commit r2049 - trunk/source

NVDA Subversion svn at nvda-project.org
Mon May 19 05:21:29 UTC 2008


Author: mdcurran
Date: Mon May 19 05:21:28 2008
New Revision: 2049

Log:
winUser: added mouse_event, and MOUSEEVENTF_* constants.

Modified:
   trunk/source/winUser.py

Modified: trunk/source/winUser.py
==============================================================================
--- trunk/source/winUser.py	(original)
+++ trunk/source/winUser.py	Mon May 19 05:21:28 2008
@@ -34,6 +34,8 @@
 	]
 
 #constants
+MOUSEEVENTF_LEFTDOWN=0x0002 
+MOUSEEVENTF_LEFTUP=0x0004 
 GUI_CARETBLINKING=0x00000001
 GUI_INMOVESIZE=0x00000002
 GUI_INMENUMODE=0x00000004
@@ -322,6 +324,9 @@
 def keybd_event(*args):
 	return user32.keybd_event(*args)
 
+def mouse_event(*args):
+	return user32.mouse_event(*args)
+
 def getAncestor(hwnd,flags):
 	return user32.GetAncestor(hwnd,flags)
 



More information about the Nvda-dev mailing list