Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
4613115b
Commit
4613115b
authored
Aug 26, 2008
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
document the PLAYER_QUEUE_ constants
parent
55377fbd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
+15
-0
player.h
src/player.h
+15
-0
No files found.
src/player.h
View file @
4613115b
...
...
@@ -53,11 +53,26 @@ enum player_command {
* ->4->0 don't play queued song
*/
enum
player_queue_state
{
/** there is no queued song */
PLAYER_QUEUE_BLANK
=
0
,
/** there is a queued song */
PLAYER_QUEUE_FULL
=
1
,
/** the player thread has forwarded the queued song to the
decoder; it waits for PLAY or STOP */
PLAYER_QUEUE_DECODE
=
2
,
/** tells the player thread to start playing the queued song;
this is a response to DECODE */
PLAYER_QUEUE_PLAY
=
3
,
/** tells the player thread to stop before playing the queued
song; this is a response to DECODE */
PLAYER_QUEUE_STOP
=
4
,
/** the player thread has begun playing the queued song, and
thus its queue is empty */
PLAYER_QUEUE_EMPTY
=
5
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment