Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

shcore.dll on Windows 7 -- does it exist?

Tags:

c#

windows-7

I am trying to use this function, but I don't have shcore.dll and I can't figure out where to get it. Is shcore.dll just a Windows 10 DLL?

   [DllImport("Shcore.dll")]
        internal static extern IntPtr GetDpiForMonitor(
            [In] IntPtr hmonitor,
            [In] MonitorDpiType dpiType,
            [Out] out uint dpiX,
            [Out] out uint dpiY);
like image 789
patrick Avatar asked May 05 '16 19:05

patrick


1 Answers

It is not available on Windows 7. Windows 8.1 or newer is required based on Microsoft's documentation.

like image 169
Sami Kuhmonen Avatar answered Oct 06 '22 18:10

Sami Kuhmonen