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
a5c03940
Commit
a5c03940
authored
Feb 16, 2009
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
output_api: moved "enum output_command" to output_internal.h
Now that the output_command enum isn't exposed to output plugins anymore, we can hide its definition within output_internal.h.
parent
3a82283b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
11 deletions
+11
-11
output_api.h
src/output_api.h
+0
-11
output_internal.h
src/output_internal.h
+11
-0
No files found.
src/output_api.h
View file @
a5c03940
...
...
@@ -114,17 +114,6 @@ struct audio_output_plugin {
void
(
*
send_tag
)(
void
*
data
,
const
struct
tag
*
tag
);
};
enum
audio_output_command
{
AO_COMMAND_NONE
=
0
,
AO_COMMAND_OPEN
,
AO_COMMAND_CLOSE
,
AO_COMMAND_PLAY
,
AO_COMMAND_PAUSE
,
AO_COMMAND_CANCEL
,
AO_COMMAND_SEND_TAG
,
AO_COMMAND_KILL
};
enum
audio_control_command
{
AC_MIXER_GETVOL
=
0
,
AC_MIXER_SETVOL
,
...
...
src/output_internal.h
View file @
a5c03940
...
...
@@ -26,6 +26,17 @@
#include <time.h>
enum
audio_output_command
{
AO_COMMAND_NONE
=
0
,
AO_COMMAND_OPEN
,
AO_COMMAND_CLOSE
,
AO_COMMAND_PLAY
,
AO_COMMAND_PAUSE
,
AO_COMMAND_CANCEL
,
AO_COMMAND_SEND_TAG
,
AO_COMMAND_KILL
};
struct
audio_output
{
/**
* The device's configured display name.
...
...
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