aboutsummaryrefslogtreecommitdiff
path: root/src/dbus.h
blob: b166a7db9df6def058edddfb4cc4f5971ee3ce5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
 * dbus.h - event loop dbus integration
 * Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */
#ifndef DBUS_H_
#define DBUS_H_

#include "config.h"

#ifdef HAVE_DBUS
#include <dbus/dbus.h>

#define SET_TIME_OK 0
#define SET_TIME_INVALID 1
#define SET_TIME_NOT_ALLOWED 2
#define SET_TIME_BAD_CALL 3

struct state;
int init_dbus (struct state *state);

struct dbus_state
{
  DBusConnection *conn;
};

struct dbus_event_data
{
  struct dbus_state *state;
  struct event *event;
};

#ifdef TLSDATED_MAIN
void dbus_announce (struct state *);
#else
static inline void dbus_announce (struct state *global_state)
{
}
#endif

#else  /* !HAVE_DBUS */
struct state;
static inline int init_dbus (struct state *state)
{
  return 0;
}
static inline void dbus_announce (struct state *global_state)
{
}
#endif

#endif  /* DBUS_H_ */