Menu

[0a35e6]: / src / rtlib / netbsd / io_mouse.c  Maximize  Restore  History

Download this file

19 lines (15 with data), 419 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
/* 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 );
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.