FreeBASIC  0.91.0
hook_getmouse64.c
Go to the documentation of this file.
1 #include "fb.h"
2 
3 FBCALL int fb_GetMouse64( long long *x, long long *y, long long *z, long long *buttons, long long *clip )
4 {
5  int res, ix, iy, iz, ibuttons, iclip;
6 
7  res = fb_GetMouse( &ix, &iy, &iz, &ibuttons, &iclip );
8 
9  *x = ix;
10  *y = iy;
11  *z = iz;
12  *buttons = ibuttons;
13  *clip = iclip;
14  return res;
15 }