24#if !defined (DBUS_INSIDE_DBUS_H) && !defined (DBUS_COMPILATION)
25#error "Only <dbus/dbus.h> can be included directly, this file may disappear or change contents."
28#ifndef DBUS_ARCH_DEPS_H
29#define DBUS_ARCH_DEPS_H
31#include <dbus/dbus-macros.h>
36#define DBUS_HAVE_INT64 1
39#define DBUS_INT64_MODIFIER "l"
41#define DBUS_INT64_CONSTANT(val) (_DBUS_GNUC_EXTENSION (val##L))
42#define DBUS_UINT64_CONSTANT(val) (_DBUS_GNUC_EXTENSION (val##UL))
44typedef int dbus_int32_t;
45typedef unsigned int dbus_uint32_t;
47typedef short dbus_int16_t;
48typedef unsigned short dbus_uint16_t;
50#define DBUS_SIZEOF_VOID_P 8
55#define DBUS_MAJOR_VERSION 1
56#define DBUS_MINOR_VERSION 15
57#define DBUS_MICRO_VERSION 12
59#define DBUS_VERSION_STRING "1.15.12"
61#define DBUS_VERSION ((1 << 16) | (15 << 8) | (12))
#define _DBUS_GNUC_EXTENSION
Tells gcc not to warn about extensions to the C standard in the following expression,...
#define DBUS_BEGIN_DECLS
Macro used prior to declaring functions in the D-Bus header files.
#define DBUS_END_DECLS
Macro used after declaring functions in the D-Bus header files.