1

In the MSDN describes EnmuDisplayMonitors as "...The EnumDisplayMonitors function enumerates display monitors (including invisible pseudo-monitors associated with the mirroring drivers)...". What are invisible monitors and how would I be able to tell them apart from the physical ones?

Built on Sin
  • 351
  • 2
  • 6
  • 19

1 Answers1

2

As stated here:

http://msdn.microsoft.com/en-us/library/windows/desktop/dd183569(v=vs.85).aspx

the StateFlags contains the value DISPLAY_DEVICE_MIRRORING_DRIVER for such kind of invisible pseudo-monitors.

So I think that's the information you where looking for.

IFeelGood
  • 397
  • 1
  • 12