Last change
on this file since 604 was
49,
checked in by Sam Hocevar, 15 years ago
|
- Imported original public domain release, for future reference.
|
-
Property svn:keywords set to
Id
|
File size:
266 bytes
|
Line | |
---|
1 | #include "joy.hpp" |
---|
2 | |
---|
3 | /* NULL joystick should be used for system where the joy |
---|
4 | stick has not yet been ported */ |
---|
5 | |
---|
6 | int joy_fd; |
---|
7 | |
---|
8 | int joy_init(int argc, char **argv) |
---|
9 | { |
---|
10 | return 0; |
---|
11 | } |
---|
12 | |
---|
13 | void joy_status(int &b1, int &b2, int &b3, int &xv, int &yv) |
---|
14 | { |
---|
15 | xv=yv=b1=b2=b3=0; |
---|
16 | } |
---|
17 | |
---|
Note: See
TracBrowser
for help on using the repository browser.