]> git.sesse.net Git - vlc/blob - modules/control/dbus/dbus_tracklist.h
Reorganize the dbus control module code
[vlc] / modules / control / dbus / dbus_tracklist.h
1 /*****************************************************************************
2  * dbus-tracklist.h : dbus control module (mpris v1.0) - /TrackList object
3  *****************************************************************************
4  * Copyright © 2006-2008 Rafaël Carré
5  * Copyright © 2007-2010 Mirsal Ennaime
6  * Copyright © 2009-2010 The VideoLAN team
7  * $Id$
8  *
9  * Authors:    Mirsal ENNAIME <mirsal dot ennaime at gmail dot com>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25
26 #ifndef _VLC_DBUS_TRACKLIST_H
27 #define _VLC_DBUS_TRACKLIST_H
28
29 #include <vlc_common.h>
30 #include <vlc_interface.h>
31 #include "dbus_common.h"
32
33 #define DBUS_MPRIS_TRACKLIST_INTERFACE    "org.freedesktop.MediaPlayer"
34 #define DBUS_MPRIS_TRACKLIST_PATH         "/TrackList"
35
36 /* Handle incoming dbus messages */
37 DBusHandlerResult handle_tracklist ( DBusConnection *p_conn,
38                                      DBusMessage *p_from,
39                                      void *p_this );
40
41 static const DBusObjectPathVTable dbus_mpris_tracklist_vtable = {
42         NULL, handle_tracklist, /* handler function */
43         NULL, NULL, NULL, NULL
44 };
45
46 int TrackListChangeEmit( intf_thread_t *, int, int );
47
48 #endif //dbus_tracklist.h