diff options
Diffstat (limited to 'dbus/dbus-protocol.h')
-rw-r--r-- | dbus/dbus-protocol.h | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/dbus/dbus-protocol.h b/dbus/dbus-protocol.h index dd9b3122..1a6fcb80 100644 --- a/dbus/dbus-protocol.h +++ b/dbus/dbus-protocol.h @@ -42,15 +42,17 @@ extern "C" { /* Data types */ #define DBUS_TYPE_INVALID 0 #define DBUS_TYPE_NIL 1 -#define DBUS_TYPE_INT32 2 -#define DBUS_TYPE_UINT32 3 -#define DBUS_TYPE_DOUBLE 4 -#define DBUS_TYPE_STRING 5 -#define DBUS_TYPE_INT32_ARRAY 6 -#define DBUS_TYPE_UINT32_ARRAY 7 -#define DBUS_TYPE_DOUBLE_ARRAY 8 -#define DBUS_TYPE_BYTE_ARRAY 9 -#define DBUS_TYPE_STRING_ARRAY 10 +#define DBUS_TYPE_BOOLEAN 2 +#define DBUS_TYPE_INT32 3 +#define DBUS_TYPE_UINT32 4 +#define DBUS_TYPE_DOUBLE 5 +#define DBUS_TYPE_STRING 6 +#define DBUS_TYPE_BOOLEAN_ARRAY 7 +#define DBUS_TYPE_INT32_ARRAY 8 +#define DBUS_TYPE_UINT32_ARRAY 9 +#define DBUS_TYPE_DOUBLE_ARRAY 10 +#define DBUS_TYPE_BYTE_ARRAY 11 +#define DBUS_TYPE_STRING_ARRAY 12 /* Header flags */ #define DBUS_HEADER_FLAG_ERROR 0x1 |