+ *on the right screen */ + HMONITOR hmon = MonitorFromWindow(p_vout->p_sys->hparent, + MONITOR_DEFAULTTONEAREST); + MONITORINFO mi = {sizeof(mi)}; + if (GetMonitorInfo(hmon, &mi)) + SetWindowPos( hwnd, 0, + mi.rcMonitor.left, + mi.rcMonitor.top, + mi.rcMonitor.right - mi.rcMonitor.left, + mi.rcMonitor.bottom - mi.rcMonitor.top, + SWP_NOZORDER|SWP_FRAMECHANGED );
VLC