|
a/upmpd/mpdcli.cxx |
|
b/upmpd/mpdcli.cxx |
|
... |
|
... |
12 |
* You should have received a copy of the GNU General Public License
|
12 |
* You should have received a copy of the GNU General Public License
|
13 |
* along with this program; if not, write to the
|
13 |
* along with this program; if not, write to the
|
14 |
* Free Software Foundation, Inc.,
|
14 |
* Free Software Foundation, Inc.,
|
15 |
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
15 |
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
16 |
*/
|
16 |
*/
|
17 |
#include <memory.h>
|
17 |
#include "mpdcli.hxx"
|
18 |
|
|
|
19 |
#include <iostream>
|
|
|
20 |
|
18 |
|
21 |
#include <mpd/client.h>
|
19 |
#include <mpd/client.h>
|
22 |
|
20 |
|
23 |
#include "libupnpp/log.hxx"
|
21 |
#include <stddef.h> // for NULL
|
24 |
#include "mpdcli.hxx"
|
22 |
|
|
|
23 |
#include <iostream> // for endl, etc
|
|
|
24 |
|
|
|
25 |
#include "libupnpp/log.hxx" // for LOGDEB, LOGERR, LOGINF
|
|
|
26 |
|
|
|
27 |
struct mpd_status;
|
25 |
|
28 |
|
26 |
using namespace std;
|
29 |
using namespace std;
|
27 |
using namespace UPnPP;
|
30 |
using namespace UPnPP;
|
28 |
|
31 |
|
29 |
#define M_CONN ((struct mpd_connection *)m_conn)
|
32 |
#define M_CONN ((struct mpd_connection *)m_conn)
|