Added/fixed some documentation reported by winapi_check.
diff --git a/windows/multimon.c b/windows/multimon.c
index 987b6ab..1a4cfe4 100644
--- a/windows/multimon.c
+++ b/windows/multimon.c
@@ -16,8 +16,9 @@
MONITOR MONITOR_PrimaryMonitor;
-/**********************************************************************/
-
+/***********************************************************************
+ * MonitorFromPoint
+ */
HMONITOR WINAPI MonitorFromPoint(POINT ptScreenCoords, DWORD dwFlags)
{
if ((dwFlags & (MONITOR_DEFAULTTOPRIMARY | MONITOR_DEFAULTTONEAREST)) ||
@@ -31,6 +32,9 @@
return NULL;
}
+/***********************************************************************
+ * MonitorFromRect
+ */
HMONITOR WINAPI MonitorFromRect(LPRECT lprcScreenCoords, DWORD dwFlags)
{
if ((dwFlags & (MONITOR_DEFAULTTOPRIMARY | MONITOR_DEFAULTTONEAREST)) ||
@@ -44,6 +48,9 @@
return NULL;
}
+/***********************************************************************
+ * MonitorFromWindow
+ */
HMONITOR WINAPI MonitorFromWindow(HWND hWnd, DWORD dwFlags)
{
WINDOWPLACEMENT wp;
@@ -61,6 +68,9 @@
return NULL;
}
+/***********************************************************************
+ * GetMonitorInfoA
+ */
BOOL WINAPI GetMonitorInfoA(HMONITOR hMonitor, LPMONITORINFO lpMonitorInfo)
{
RECT rcWork;
@@ -83,6 +93,9 @@
return FALSE;
}
+/***********************************************************************
+ * GetMonitorInfoW
+ */
BOOL WINAPI GetMonitorInfoW(HMONITOR hMonitor, LPMONITORINFO lpMonitorInfo)
{
RECT rcWork;
@@ -105,6 +118,9 @@
return FALSE;
}
+/***********************************************************************
+ * EnumDisplayMonitors
+ */
BOOL WINAPI EnumDisplayMonitors(
HDC hdcOptionalForPainting,
LPRECT lprcEnumMonitorsThatIntersect,