#ifndef __CDESKTOP_MOUSE_H__ #define __CDESKTOP_MOUSE_H__ #include "misc.h" #ifdef __cplusplus extern "C" { #endif /* mouse.h Handles the mouse. C-Desktop Copyright (C)1998, Brett Porter. */ /* FUNCTION PROTOTYPES */ extern void Mouse_Initialise( void ); extern void Mouse_TurnCursorOn( void ); extern void Mouse_TurnCursorOff( void ); extern void Mouse_Poll( void ); extern void Mouse_SetMickey( int aX, int aY ); extern bool Mouse_LeftPressed( void ); extern bool Mouse_RightPressed( void ); extern bool Mouse_Over( int aX1, int aY1, int aX2, int aY2 ); /* EXTERNAL VARIABLES */ extern bool gMouse_CursorOn; #ifdef __cplusplus } #endif #endif