FreeBASIC  0.91.0
gfx_joystick.c
Go to the documentation of this file.
1 /* joystick handling, openbsd */
2 
3 #include "../fb_gfx.h"
4 
5 FBCALL int fb_GfxGetJoystick(int id, ssize_t *buttons, float *a1, float *a2, float *a3, float *a4, float *a5, float *a6, float *a7, float *a8)
6 {
7  *buttons = -1;
8  *a1 = *a2 = *a3 = *a4 = *a5 = *a6 = *a7 = *a8 = -1000.0;
9 
11 }