mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-09-10 17:29:08 +00:00
17 lines
380 B
C#
17 lines
380 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace QuickLook.NativeMethods;
|
|
|
|
internal static class SHCore
|
|
{
|
|
public enum PROCESS_DPI_AWARENESS
|
|
{
|
|
PROCESS_DPI_UNAWARE,
|
|
PROCESS_SYSTEM_DPI_AWARE,
|
|
PROCESS_PER_MONITOR_DPI_AWARE
|
|
}
|
|
|
|
[DllImport("shcore.dll")]
|
|
public static extern uint SetProcessDpiAwareness(PROCESS_DPI_AWARENESS awareness);
|
|
}
|