Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 28011
b: refs/heads/master
c: d273176
h: refs/heads/master
i:
  28009: fe129ed
  28007: 8e681a6
v: v3
  • Loading branch information
David Woodhouse committed Jun 2, 2006
1 parent d146754 commit cc6bc2a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 7b1c6ca73aa102e9dde5098f58c523bca0f8e2c3
refs/heads/master: d27317657ae18cfbc45def8f566e4c3ed1f51d74
22 changes: 11 additions & 11 deletions trunk/include/linux/joystick.h
Original file line number Diff line number Diff line change
Expand Up @@ -111,25 +111,25 @@ struct js_corr {
#define JS_SET_ALL 8

struct JS_DATA_TYPE {
int32_t buttons;
int32_t x;
int32_t y;
__s32 buttons;
__s32 x;
__s32 y;
};

struct JS_DATA_SAVE_TYPE_32 {
int32_t JS_TIMEOUT;
int32_t BUSY;
int32_t JS_EXPIRETIME;
int32_t JS_TIMELIMIT;
__s32 JS_TIMEOUT;
__s32 BUSY;
__s32 JS_EXPIRETIME;
__s32 JS_TIMELIMIT;
struct JS_DATA_TYPE JS_SAVE;
struct JS_DATA_TYPE JS_CORR;
};

struct JS_DATA_SAVE_TYPE_64 {
int32_t JS_TIMEOUT;
int32_t BUSY;
int64_t JS_EXPIRETIME;
int64_t JS_TIMELIMIT;
__s32 JS_TIMEOUT;
__s32 BUSY;
__s64 JS_EXPIRETIME;
__s64 JS_TIMELIMIT;
struct JS_DATA_TYPE JS_SAVE;
struct JS_DATA_TYPE JS_CORR;
};
Expand Down

0 comments on commit cc6bc2a

Please sign in to comment.