Ignore:
Timestamp:
Oct 18, 1999, 12:54:04 PM (26 years ago)
Author:
sandervl
Message:

WS_VISIBLE & scrollbar fixes

File:
1 edited

Legend:

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

    r1336 r1348  
    1 /* $Id: user32.cpp,v 1.43 1999-10-17 15:46:08 sandervl Exp $ */
     1/* $Id: user32.cpp,v 1.44 1999-10-18 10:54:04 sandervl Exp $ */
    22
    33/*
     
    687687//******************************************************************************
    688688//******************************************************************************
    689 HWND WIN32API GetCapture(void)
    690 {
    691 #ifdef DEBUG
    692     WriteLog("USER32:  GetCapture\n");
    693 #endif
    694     return Win32Window::OS2ToWin32Handle(O32_GetCapture());
    695 }
    696 //******************************************************************************
    697 //******************************************************************************
    698689UINT WIN32API GetDoubleClickTime(void)
    699690{
     
    735726BOOL WIN32API ReleaseCapture(void)
    736727{
    737 #ifdef DEBUG
    738     WriteLog("USER32:  ReleaseCapture\n");
    739 #endif
     728    dprintf(("USER32:  ReleaseCapture"));
    740729    return O32_ReleaseCapture();
    741730}
    742731//******************************************************************************
    743732//******************************************************************************
     733HWND WIN32API GetCapture(void)
     734{
     735 HWND hwnd;
     736
     737    hwnd = Win32Window::OS2ToWin32Handle(O32_GetCapture());
     738    dprintf(("USER32: GetCapture returned %x", hwnd));
     739    return hwnd;
     740}
     741//******************************************************************************
     742//******************************************************************************
    744743HWND WIN32API SetCapture( HWND hwnd)
    745744{
    746745#ifdef DEBUG
    747     WriteLog("USER32:  SetCapture\n");
     746    WriteLog("USER32: SetCapture %x", hwnd);
    748747#endif
    749748    hwnd = Win32Window::Win32ToOS2Handle(hwnd);
Note: See TracChangeset for help on using the changeset viewer.