(C) 1998 AROS - The Amiga Research OS


NAME
#include <clib/intuition_protos.h>

void MoveScreen (screen , dx , dy)

LOCATION
In IntuitionBase at offset 27

SYNOPSIS
struct Screen * screen
LONG dx
LONG dy

FUNCTION
Move a screen by the specified amount in X/Y direction. The resolution is always the screen resolution.

INPUTS
screen
Move this screen
dx
Move it by this amount along the X axis (> 0 to the right, < 0 to the left).
dy
Move it by this amount along the Y axis (> 0 down, < 0 up)

RESULT
None.

EXAMPLE

SEE ALSO
RethinkDisplay()

NOTES
Depending on other restrictions, the screen may not move as far as specified. It will move as far as possible and you can check LeftEdge and TopEdge of the sceen to see how far it got.

BUGS

INTERNALS

HISTORY
16.01.1999 hkiel
Added aros_print_not_implemented()
20.10.1998 hkiel
Amiga Research OS
13.02.1997 digulla
New functions