You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
410 B
18 lines
410 B
1 year ago
|
using System;
|
||
|
using System.Runtime.InteropServices;
|
||
|
|
||
|
namespace FullscreenEditor.Windows {
|
||
|
internal static class GDI32 {
|
||
|
|
||
|
// http://pinvoke.net/default.aspx/gdi32/GetDeviceCaps.html
|
||
|
public enum DeviceCap {
|
||
|
VERTRES = 10,
|
||
|
DESKTOPVERTRES = 117,
|
||
|
}
|
||
|
|
||
|
[DllImport("gdi32.dll")]
|
||
|
public static extern int GetDeviceCaps(IntPtr hDc, int nIndex);
|
||
|
|
||
|
}
|
||
|
}
|