216
by osmoma at gmail
Making Totem movie player to behave nicely with recorder (a hack). |
1 |
#ifndef __DBUS_SERVICE_H__
|
2 |
#define __DBUS_SERVICE_H__
|
|
101
by Osmo Antero
New media-player interface that's based on the MediaPlayer2 standard. See src/dbus-mpris2.c. |
3 |
|
4 |
#include "log.h" |
|
5 |
#include "support.h" |
|
6 |
||
7 |
void dbus_service_module_init(); |
|
8 |
||
9 |
void dbus_service_module_exit(); |
|
10 |
||
11 |
// Start DBus-server for this audio recorder
|
|
12 |
gboolean dbus_service_start(); |
|
13 |
||
14 |
// Execute client request (method call) on DBus-server
|
|
15 |
gchar *dbus_service_client_request(gchar *method_name, gchar *arg); |
|
16 |
||
17 |
#endif
|
|
18 |