~audio-recorder/audio-recorder/trunk

« back to all changes in this revision

Viewing changes to src/dbus-service.h

  • Committer: Osmo Antero
  • Date: 2011-09-18 09:13:24 UTC
  • Revision ID: osmoma@gmail.com-20110918091324-wosqw4bzzhhyqz6m
VersionĀ 0.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _DBUS_SERVICE_H
 
2
#define _DBUS_SERVICE_H
 
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
 
15
gchar *dbus_service_client_request(gchar *method_name, gchar *arg);
 
16
 
 
17
#endif
 
18