Added GetCursorPos function and removed a commented out print line

This commit is contained in:
markm 2006-11-30 00:01:03 +00:00
parent 34ff442492
commit c6cefe31b6
2 changed files with 1 additions and 1 deletions

@ -579,7 +579,6 @@ class WindowSpecification(object):
# swap it around so that we are mapped off the controls
control_name_map = {}
for name, ctrl in name_control_map.items():
#print name, ctrl
control_name_map.setdefault(ctrl, []).append(name)
print "Control Identifiers:"

@ -53,6 +53,7 @@ GetDesktopWindow = ctypes.windll.user32.GetDesktopWindow
SendInput = ctypes.windll.user32.SendInput
SetCursorPos = ctypes.windll.user32.SetCursorPos
GetCursorPos = ctypes.windll.user32.GetCursorPos
GetCaretPos = ctypes.windll.user32.GetCaretPos
# menu functions