Getting the name of connected displays

Hi
The function NvAPI_GetAssociatedNvidiaDisplayName tells me \.\DISPLAY1. With which function can I get the human readable name of the connected display, eg. LG Electronics LG ULTRAWIDE?

Thank you
Marco

You may enumerate all monitor again using Windows API EnumDisplayDevices() twice:
the 1st call pass 0 as the flag to get DeviceName like \.\DISPLAY1,
the 2nd call pass EDD_GET_DEVICE_INTERFACE_NAME and the DeviceName above to retrieve the device interface name for GUID_DEVINTERFACE_MONITOR. The resulting device interface name can be used with SetupDixxx functions to retrieve all properties.

Then you connect NvDisplayHandle, GDI monitor devices and SetupAPI monitor devices altogether.

Thank you.