/* console mode mouse functions */
#include "../fb.h"
int fb_ConsoleGetMouse( int *x, int *y, int *z, int *buttons, int *clip )
{
if (x) *x = -1;
if (y) *y = -1;
if (z) *z = -1;
if (buttons) *buttons = -1;
if (clip) *clip = -1;
return fb_ErrorSetNum( FB_RTERROR_ILLEGALFUNCTIONCALL );
}
int fb_ConsoleSetMouse( int x, int y, int cursor, int clip )
{
return fb_ErrorSetNum( FB_RTERROR_ILLEGALFUNCTIONCALL );
}