GetProcessDpiAwareness function user32

int GetProcessDpiAwareness(
  1. int hprocess,
  2. Pointer<Int32> value
)

Retrieves the dots per inch (dpi) awareness of the specified process.

HRESULT GetProcessDpiAwareness(
  HANDLE                hprocess,
  PROCESS_DPI_AWARENESS *value
);

Implementation

int GetProcessDpiAwareness(int hprocess, Pointer<Int32> value) =>
    _GetProcessDpiAwareness(hprocess, value);