summaryrefslogtreecommitdiff
path: root/console-client/display.h
diff options
context:
space:
mode:
Diffstat (limited to 'console-client/display.h')
-rw-r--r--console-client/display.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/console-client/display.h b/console-client/display.h
index 01ddd733..1e73bdee 100644
--- a/console-client/display.h
+++ b/console-client/display.h
@@ -1,5 +1,5 @@
/* display.h - The interface to and for a display driver.
- Copyright (C) 2002, 2003 Free Software Foundation, Inc.
+ Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
Written by Marcus Brinkmann.
This file is part of the GNU Hurd.
@@ -141,6 +141,14 @@ struct display_ops
write that covers the whole new screen. */
error_t (*set_dimension) (void *handle, unsigned int width,
unsigned int height);
+
+ /* Move the mouse cursor to the position X, Y. If the mouse cursor
+ is visible, update its position. */
+ error_t (*set_mousecursor_pos) (void *handle, float x, float y);
+
+ /* If STATUS is set to 0, hide the mouse cursor, otherwise show
+ it. */
+ error_t (*set_mousecursor_status) (void *handle, int status);
};
#endif /* _DISPLAY_H_ */