Changeset 2114 for trunk/src/user32/user32.cpp
- Timestamp:
- Dec 18, 1999, 5:31:52 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/user32.cpp
r2093 r2114 1 /* $Id: user32.cpp,v 1.6 0 1999-12-16 16:53:58cbratschi Exp $ */1 /* $Id: user32.cpp,v 1.61 1999-12-18 16:31:49 cbratschi Exp $ */ 2 2 3 3 /* … … 2572 2572 /* CB: move to MDI */ 2573 2573 2574 /*****************************************************************************2575 * Name : WORD WIN32API TileWindows2576 * Purpose : The TileWindows function tiles the specified windows, or the child2577 * windows of the specified parent window.2578 * Parameters: HWND hwndParent handle of parent window2579 * WORD wFlags types of windows not to arrange2580 * LPCRECT lpRect rectangle to arrange windows in2581 * WORD cChildrenb number of windows to arrange2582 * const HWND *ahwndChildren array of window handles2583 * Variables :2584 * Result : If the function succeeds, the return value is the number of2585 * windows arranged.2586 * If the function fails, the return value is zero.2587 * Remark :2588 * Status : UNTESTED STUB2589 *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 TileChildWindows2609 * Purpose : Unknown2610 * Parameters: Unknown2611 * Variables :2612 * Result :2613 * Remark :2614 * Status : UNTESTED UNKNOWN STUB2615 *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 CascadeChildWindows2629 * Purpose : Unknown2630 * Parameters: Unknown2631 * Variables :2632 * Result :2633 * Remark :2634 * Status : UNTESTED UNKNOWN STUB2635 *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 2648 2574 /* Drag'n'drop */ 2649 2575
Note:
See TracChangeset
for help on using the changeset viewer.