diff options
author | Luiz Augusto von Dentz <luiz.dentz@openbossa.org> | 2007-07-10 13:34:57 +0000 |
---|---|---|
committer | Luiz Augusto von Dentz <luiz.dentz@openbossa.org> | 2007-07-10 13:34:57 +0000 |
commit | 66d48b0ac25c85de354f26782a377d0ad91bd322 (patch) | |
tree | 973a2c30fa6609a8fa10b7d99c150ef476f7b142 /audio/headset.h | |
parent | df235d1f395b10654024979180c778777bd50c71 (diff) |
Code cleanup.
Diffstat (limited to 'audio/headset.h')
-rw-r--r-- | audio/headset.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/audio/headset.h b/audio/headset.h index c858d206..d3fd86d9 100644 --- a/audio/headset.h +++ b/audio/headset.h @@ -40,11 +40,11 @@ typedef enum { } headset_event_t; typedef enum { - HEADSET_STATE_DISCONNECTED = 0, - HEADSET_STATE_CONNECT_IN_PROGRESS, - HEADSET_STATE_CONNECTED, - HEADSET_STATE_PLAY_IN_PROGRESS, - HEADSET_STATE_PLAYING, + HEADSET_STATE_DISCONNECTED = STATE_DISCONNECTED, + HEADSET_STATE_CONNECT_IN_PROGRESS = STATE_CONNECTING, + HEADSET_STATE_CONNECTED = STATE_CONNECTED, + HEADSET_STATE_PLAY_IN_PROGRESS = STATE_STREAM_STARTING, + HEADSET_STATE_PLAYING = STATE_STREAMING, } headset_state_t; typedef enum { |