2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 Copyright © 2001-2003, The MorphOS Development Team. All Rights Reserved.
7 #include "intuition_intern.h"
9 /*****************************************************************************
12 #include <proto/intuition.h>
14 AROS_LH3(void, SizeWindow
,
17 AROS_LHA(struct Window
*, window
, A0
),
18 AROS_LHA(LONG
, dx
, D0
),
19 AROS_LHA(LONG
, dy
, D1
),
22 struct IntuitionBase
*, IntuitionBase
, 48, Intuition
)
25 Modify the size of a window by the specified offsets.
28 window - The window to resize.
29 dx - Add this to the width.
30 dy - Add this to the height.
36 The resize of the window may be delayed. If you depend on the
37 information that is has changed size, wait for IDCMP_NEWSIZE.
48 29-10-95 digulla automatically created from
49 intuition_lib.fd and clib/intuition_protos.h
51 *****************************************************************************/
60 ChangeWindowBox(window
, window
->LeftEdge
, window
->TopEdge
,
61 window
->Width
+ dx
, window
->Height
+ dy
);