From 1d3b65f4c4af6d60cbd6339711a251f42ed0a1c7 Mon Sep 17 00:00:00 2001 From: nathan Date: Thu, 26 Jan 2017 14:09:07 +0100 Subject: [PATCH] Added comments --- src/dorkbox/systemTray/jna/windows/Gdi32.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/dorkbox/systemTray/jna/windows/Gdi32.java b/src/dorkbox/systemTray/jna/windows/Gdi32.java index 8468ab5..fcdd985 100644 --- a/src/dorkbox/systemTray/jna/windows/Gdi32.java +++ b/src/dorkbox/systemTray/jna/windows/Gdi32.java @@ -31,6 +31,10 @@ class Gdi32 { JnaHelper.register("gdi32", Gdi32.class); } + /** + * Number of pixels per logical inch along the screen width. In a system with multiple display monitors, this value is the same for + * all monitors. + */ public static final int LOGPIXELSX = 88;