Ignore:
Timestamp:
Dec 18, 1999, 5:31:52 PM (26 years ago)
Author:
cbratschi
Message:

MDI fixes, ChildWindowFromPointEx

File:
1 edited

Legend:

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

    r2093 r2114  
    1 /* $Id: user32.cpp,v 1.60 1999-12-16 16:53:58 cbratschi Exp $ */
     1/* $Id: user32.cpp,v 1.61 1999-12-18 16:31:49 cbratschi Exp $ */
    22
    33/*
     
    25722572/* CB: move to MDI */
    25732573
    2574 /*****************************************************************************
    2575  * Name      : WORD WIN32API TileWindows
    2576  * Purpose   : The TileWindows function tiles the specified windows, or the child
    2577  *             windows of the specified parent window.
    2578  * Parameters: HWND       hwndParent     handle of parent window
    2579  *             WORD       wFlags         types of windows not to arrange
    2580  *             LPCRECT    lpRect         rectangle to arrange windows in
    2581  *             WORD       cChildrenb     number of windows to arrange
    2582  *             const HWND *ahwndChildren array of window handles
    2583  * Variables :
    2584  * Result    : If the function succeeds, the return value is the number of
    2585  *               windows arranged.
    2586  *             If the function fails, the return value is zero.
    2587  * Remark    :
    2588  * Status    : UNTESTED STUB
    2589  *
    2590  * Author    : Patrick Haller [Thu, 1998/02/26 11:55]
    2591  *****************************************************************************/
    2592 WORD WIN32API TileWindows(HWND       hwndParent,
    2593                           UINT       wFlags,
    2594                           const LPRECT lpRect,
    2595                           UINT       cChildrenb,
    2596                           const HWND *ahwndChildren)
    2597 {
    2598   dprintf(("USER32:TileWindows (%08xh,%08xh,%08xh,%08xh,%08x) not implemented.\n",
    2599            hwndParent,
    2600            wFlags,
    2601            lpRect,
    2602            cChildrenb,
    2603            ahwndChildren));
    2604 
    2605    return (0);
    2606 }
    2607 /*****************************************************************************
    2608  * Name      : BOOL WIN32API TileChildWindows
    2609  * Purpose   : Unknown
    2610  * Parameters: Unknown
    2611  * Variables :
    2612  * Result    :
    2613  * Remark    :
    2614  * Status    : UNTESTED UNKNOWN STUB
    2615  *
    2616  * Author    : Patrick Haller [Wed, 1998/06/16 11:55]
    2617  *****************************************************************************/
    2618 BOOL WIN32API TileChildWindows(DWORD x1,
    2619                                   DWORD x2)
    2620 {
    2621   dprintf(("USER32: TileChildWindows(%08xh,%08xh) not implemented.\n",
    2622            x1,
    2623            x2));
    2624 
    2625   return (FALSE); /* default */
    2626 }
    2627 /*****************************************************************************
    2628  * Name      : BOOL WIN32API CascadeChildWindows
    2629  * Purpose   : Unknown
    2630  * Parameters: Unknown
    2631  * Variables :
    2632  * Result    :
    2633  * Remark    :
    2634  * Status    : UNTESTED UNKNOWN STUB
    2635  *
    2636  * Author    : Patrick Haller [Wed, 1998/06/16 11:55]
    2637  *****************************************************************************/
    2638 BOOL WIN32API CascadeChildWindows(DWORD x1,
    2639                                      DWORD x2)
    2640 {
    2641   dprintf(("USER32: CascadeChildWindows(%08xh,%08xh) not implemented.\n",
    2642            x1,
    2643            x2));
    2644 
    2645   return (FALSE); /* default */
    2646 }
    2647 
    26482574/* Drag'n'drop */
    26492575
Note: See TracChangeset for help on using the changeset viewer.