Discussion:
Refresh rate code (Windows)
j***@public.gmane.org
2014-04-13 04:16:16 UTC
Permalink
I know how to get the screen's refresh rate in Windows using pywin32 (win32all).

import win32api
d = win32api.EnumDisplaySettings(None, -1)
print (d.DisplayFrequency)

How would I call the same function using ctypes?

Thanks,
Jason

Sent from Yahoo Mail on Android

Loading...