MoveWindow( Window, DeltaX, DeltaY )
VOID MoveWindow( struct Window *, WORD, WORD );
This routine sends a request to Intuition asking to move the window the specified distance. The delta arguments describe how far to move the window along the respective axes.
Note that the window will not be moved immediately, but rather will be moved the next time Intuition receives an input event, which happens currently at a minimum rate of ten times per second, and a maximum of sixty times a second.
Interactions with other arbitration of Intuition data structures may defer this operation longer. For V36, you can use the new IDCMP class IDCMP_CHANGEWINDOW to detect when this operation has completed.
New for V36: Intuition now will do validity checking on the final position. To send absolute movements, or to move and size a window in one step, use
ChangeWindowBox().