GetSystemDpiForProcess method

int GetSystemDpiForProcess(
  1. Pointer<Void> hProcess
)

Implementation

int GetSystemDpiForProcess(
  ffi.Pointer<ffi.Void> hProcess,
) {
  return (_GetSystemDpiForProcess ??= _dylib.lookupFunction<
      _c_GetSystemDpiForProcess,
      _dart_GetSystemDpiForProcess>('GetSystemDpiForProcess'))(
    hProcess,
  );
}