aboutsummaryrefslogtreecommitdiff
path: root/backends/morphos/morphos.h
diff options
context:
space:
mode:
Diffstat (limited to 'backends/morphos/morphos.h')
-rw-r--r--backends/morphos/morphos.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/backends/morphos/morphos.h b/backends/morphos/morphos.h
index aa6184f16d..8730149bcc 100644
--- a/backends/morphos/morphos.h
+++ b/backends/morphos/morphos.h
@@ -94,6 +94,9 @@ class OSystem_MorphOS : public OSystem
// Returns true if an event was retrieved.
virtual bool poll_event(Event *event);
+ // Moves mouse pointer to specified position
+ virtual void warp_mouse(int x, int y);
+
// Set the function to be invoked whenever samples need to be generated
virtual bool set_sound_proc(void *param, SoundProc *proc, byte format);
void fill_sound (byte * stream, int len);
@@ -191,6 +194,8 @@ class OSystem_MorphOS : public OSystem
int MouseOldWidth, MouseOldHeight;
int MouseHotspotX, MouseHotspotY;
byte *MouseImage, MouseBackup[MAX_MOUSE_W*MAX_MOUSE_H];
+ MsgPort* InputMsgPort;
+ IOStdReq*InputIORequest;
/* Timer-related attributes */
MsgPort *TimerMsgPort;