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
ccd7f082
Commit
ccd7f082
authored
Sep 27, 2013
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DecoderControl: use GLib forward declarations
parent
d0896ea7
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
16 additions
and
6 deletions
+16
-6
ClientRead.cxx
src/ClientRead.cxx
+2
-0
DecoderControl.cxx
src/DecoderControl.cxx
+2
-0
DecoderControl.hxx
src/DecoderControl.hxx
+1
-2
Main.hxx
src/Main.hxx
+1
-2
OutputControl.cxx
src/OutputControl.cxx
+2
-0
OutputInternal.hxx
src/OutputInternal.hxx
+2
-2
HttpdInternal.hxx
src/output/HttpdInternal.hxx
+2
-0
PipeOutputPlugin.cxx
src/output/PipeOutputPlugin.cxx
+2
-0
WinmmOutputPlugin.cxx
src/output/WinmmOutputPlugin.cxx
+2
-0
No files found.
src/ClientRead.cxx
View file @
ccd7f082
...
@@ -22,6 +22,8 @@
...
@@ -22,6 +22,8 @@
#include "Main.hxx"
#include "Main.hxx"
#include "event/Loop.hxx"
#include "event/Loop.hxx"
#include <glib.h>
#include <assert.h>
#include <assert.h>
#include <string.h>
#include <string.h>
...
...
src/DecoderControl.cxx
View file @
ccd7f082
...
@@ -22,6 +22,8 @@
...
@@ -22,6 +22,8 @@
#include "MusicPipe.hxx"
#include "MusicPipe.hxx"
#include "Song.hxx"
#include "Song.hxx"
#include <glib.h>
#include <assert.h>
#include <assert.h>
#undef G_LOG_DOMAIN
#undef G_LOG_DOMAIN
...
...
src/DecoderControl.hxx
View file @
ccd7f082
...
@@ -26,8 +26,6 @@
...
@@ -26,8 +26,6 @@
#include "thread/Cond.hxx"
#include "thread/Cond.hxx"
#include "util/Error.hxx"
#include "util/Error.hxx"
#include <glib.h>
#include <assert.h>
#include <assert.h>
#include <stdint.h>
#include <stdint.h>
...
@@ -39,6 +37,7 @@
...
@@ -39,6 +37,7 @@
struct
Song
;
struct
Song
;
class
MusicBuffer
;
class
MusicBuffer
;
class
MusicPipe
;
class
MusicPipe
;
typedef
struct
_GThread
GThread
;
enum
class
DecoderState
:
uint8_t
{
enum
class
DecoderState
:
uint8_t
{
STOP
=
0
,
STOP
=
0
,
...
...
src/Main.hxx
View file @
ccd7f082
...
@@ -20,10 +20,9 @@
...
@@ -20,10 +20,9 @@
#ifndef MPD_MAIN_HXX
#ifndef MPD_MAIN_HXX
#define MPD_MAIN_HXX
#define MPD_MAIN_HXX
#include <glib.h>
class
EventLoop
;
class
EventLoop
;
struct
Instance
;
struct
Instance
;
typedef
struct
_GThread
GThread
;
extern
GThread
*
main_task
;
extern
GThread
*
main_task
;
...
...
src/OutputControl.cxx
View file @
ccd7f082
...
@@ -29,6 +29,8 @@
...
@@ -29,6 +29,8 @@
#include "FilterPlugin.hxx"
#include "FilterPlugin.hxx"
#include "util/Error.hxx"
#include "util/Error.hxx"
#include <glib.h>
#include <assert.h>
#include <assert.h>
#include <stdlib.h>
#include <stdlib.h>
...
...
src/OutputInternal.hxx
View file @
ccd7f082
...
@@ -25,14 +25,14 @@
...
@@ -25,14 +25,14 @@
#include "thread/Mutex.hxx"
#include "thread/Mutex.hxx"
#include "thread/Cond.hxx"
#include "thread/Cond.hxx"
#include <glib.h>
#include <time.h>
#include <time.h>
class
Error
;
class
Error
;
class
Filter
;
class
Filter
;
class
MusicPipe
;
class
MusicPipe
;
struct
config_param
;
struct
config_param
;
typedef
struct
_GThread
GThread
;
typedef
struct
_GTimer
GTimer
;
enum
audio_output_command
{
enum
audio_output_command
{
AO_COMMAND_NONE
=
0
,
AO_COMMAND_NONE
=
0
,
...
...
src/output/HttpdInternal.hxx
View file @
ccd7f082
...
@@ -30,6 +30,8 @@
...
@@ -30,6 +30,8 @@
#include "thread/Mutex.hxx"
#include "thread/Mutex.hxx"
#include "event/ServerSocket.hxx"
#include "event/ServerSocket.hxx"
#include <glib.h>
#include <forward_list>
#include <forward_list>
struct
config_param
;
struct
config_param
;
...
...
src/output/PipeOutputPlugin.cxx
View file @
ccd7f082
...
@@ -24,6 +24,8 @@
...
@@ -24,6 +24,8 @@
#include "util/Error.hxx"
#include "util/Error.hxx"
#include "util/Domain.hxx"
#include "util/Domain.hxx"
#include <glib.h>
#include <stdio.h>
#include <stdio.h>
#include <errno.h>
#include <errno.h>
...
...
src/output/WinmmOutputPlugin.cxx
View file @
ccd7f082
...
@@ -25,6 +25,8 @@
...
@@ -25,6 +25,8 @@
#include "util/Error.hxx"
#include "util/Error.hxx"
#include "util/Domain.hxx"
#include "util/Domain.hxx"
#include <glib.h>
#include <stdlib.h>
#include <stdlib.h>
#include <string.h>
#include <string.h>
...
...
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