RosettaCodeData/Task/Call-a-function-in-a-shared-library/Python/call-a-function-in-a-shared-library-1.py

5 lines
104 B
Python
Raw Permalink Normal View History

2013-04-10 16:57:12 -07:00
import ctypes
user32_dll = ctypes.cdll.LoadLibrary('User32.dll')
print user32_dll.GetDoubleClickTime()