combjs

view gui/combjs.h @ 2:4e8f2bbe8426

doing the gui
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 15 Jul 2011 06:54:32 +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_ */