Ignore:
Timestamp:
Jun 17, 2001, 11:08:01 PM (24 years ago)
Author:
sandervl
Message:

WS_VISIBLE flag change allowed in SetWindowLong; scrollbar fix for sizebox/grip style

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/display.cpp

    r4535 r6040  
    1 /* $Id: display.cpp,v 1.10 2000-10-26 17:22:23 sandervl Exp $ */
     1/* $Id: display.cpp,v 1.11 2001-06-17 21:08:00 sandervl Exp $ */
    22/*
    33 * Display/Monitor Win32 apis
     
    434434    RECT rcWork;
    435435
    436     dprintf(("USER32:  GetMonitorInfoA\n"));
     436    dprintf(("USER32: GetMonitorInfoA %x %x", hMonitor, lpMonitorInfo));
    437437
    438438    if ((hMonitor == xPRIMARY_MONITOR) &&
     
    462462    RECT rcWork;
    463463
    464     dprintf(("USER32:  GetMonitorInfoW\n"));
     464    dprintf(("USER32: GetMonitorInfoW %x %x", hMonitor, lpMonitorInfo));
    465465
    466466    if ((hMonitor == xPRIMARY_MONITOR) &&
     
    490490   WINDOWPLACEMENT wp;
    491491
    492     dprintf(("USER32:  MonitorFromWindow\n"));
     492    dprintf(("USER32: MonitorFromWindow %x %x", hWnd, dwFlags));
    493493
    494494    if (dwFlags & (MONITOR_DEFAULTTOPRIMARY | MONITOR_DEFAULTTONEAREST))
     
    502502    }
    503503
     504    dprintf(("USER32: MonitorFromWindow failed"));
    504505    return NULL;
    505506}
     
    508509HMONITOR WIN32API MonitorFromRect(LPRECT lprcScreenCoords, DWORD dwFlags)
    509510{
    510     dprintf(("USER32:  MonitorFromRect\n"));
     511    dprintf(("USER32: MonitorFromRect (%d,%d)(%d,%d) %x", lprcScreenCoords->left, lprcScreenCoords->top, lprcScreenCoords->right, lprcScreenCoords->bottom, dwFlags));
    511512
    512513      if ((dwFlags & (MONITOR_DEFAULTTOPRIMARY | MONITOR_DEFAULTTONEAREST)) ||
     
    518519        return xPRIMARY_MONITOR;
    519520    }
     521    dprintf(("USER32: MonitorFromRect failed"));
    520522    return NULL;
    521523}
     
    524526HMONITOR WIN32API MonitorFromPoint(POINT ptScreenCoords, DWORD dwFlags)
    525527{
    526   dprintf(("USER32:  MonitorFromPoint\n"));
     528  dprintf(("USER32: MonitorFromPoint (%d,%d) %x", ptScreenCoords.x, ptScreenCoords.y, dwFlags));
    527529
    528530  if ((dwFlags & (MONITOR_DEFAULTTOPRIMARY | MONITOR_DEFAULTTONEAREST)) ||
     
    535537  }
    536538
     539  dprintf(("USER32: MonitorFromPoint failed"));
    537540  return NULL;
    538541}
     
    545548        LPARAM          dwData)
    546549{
    547   dprintf(("USER32:  EnumDisplayMonitors\n"));
    548 
    549550    RECT rcLimit;
     551
     552    dprintf(("USER32: EnumDisplayMonitors %x %x %x %x", hdcOptionalForPainting, lprcEnumMonitorsThatIntersect, lpfnEnumProc, dwData));
    550553
    551554    if (!lpfnEnumProc)
Note: See TracChangeset for help on using the changeset viewer.