summaryrefslogtreecommitdiff
path: root/src/mtouch.h
diff options
context:
space:
mode:
authorHenrik Rydberg <rydberg@euromail.se>2010-03-29 23:50:05 +0200
committerHenrik Rydberg <rydberg@euromail.se>2010-04-15 06:10:07 +0200
commit9c24576540ba57449c31bafcb8f4aab41b8623b7 (patch)
tree8a9001c10f2598b74d141ea783114575c91fd39c /src/mtouch.h
parent173d728d812e78b299cbc9475fc237b9023eee2b (diff)
Rename State to HWState
Rename the hardware state struct State to HWState, to make room for additional state structures. Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
Diffstat (limited to 'src/mtouch.h')
-rw-r--r--src/mtouch.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mtouch.h b/src/mtouch.h
index 753a400..e4a59fb 100644
--- a/src/mtouch.h
+++ b/src/mtouch.h
@@ -25,13 +25,13 @@
25#include "capabilities.h" 25#include "capabilities.h"
26#include "iobuffer.h" 26#include "iobuffer.h"
27#include "hwdata.h" 27#include "hwdata.h"
28#include "state.h" 28#include "hwstate.h"
29 29
30struct MTouch { 30struct MTouch {
31 struct Capabilities caps; 31 struct Capabilities caps;
32 struct IOBuffer buf; 32 struct IOBuffer buf;
33 struct HWData hw; 33 struct HWData hw;
34 struct State os, ns; 34 struct HWState ohs, nhs;
35}; 35};
36 36
37int configure_mtouch(struct MTouch *mt, int fd); 37int configure_mtouch(struct MTouch *mt, int fd);