combjs

view gui/combjs.h @ 1:dd02002227a2

- added a few commandline arguments to combjs - trying to make a gui frontend
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 14 Jul 2011 15:40:20 +0300
parents
children
line source
1 #ifndef COMBJS_H_
2 #define COMBJS_H_
4 #include <vector>
5 #include <string>
7 struct Joystick {
8 std::string dev;
9 std::string name;
10 int num_axes, num_bn;
11 bool isvirt;
12 };
14 int enum_joysticks(std::vector<Joystick> *jsvec);
16 #endif /* COMBJS_H_ */