By Windows PC displays, I am not referring to Windows CE, or handhelds, etc.
Clarification
Some folks below mistakenly thought I was asking what the DPI (dots per inch) was on monitors. What I'm asking for is the value for LogPixelsX in the GetCaps API call :
LOGPIXELSX Number of pixels per logical inch along the screen width.
In the examples I've seen, it's set to 88, regardless of the screen DPI. Seems to be a Magic Number sort of constant.
In a related Question I'm using GetDeviceCaps to calculate current Screen Font DPI. The code samples I found all have:
Const LOGPIXELSX = 88
Is this universally the same for all monitors (even widescreen vs regular monitors)? And if not, how do I find it for the current display. (MSDN indicates that it's the same for all monitors on a particular computer.
In a system with multiple display monitors, this value is the same for all monitors.