summaryrefslogtreecommitdiffstats
path: root/dbus/dbus-errors.c
diff options
context:
space:
mode:
Diffstat (limited to 'dbus/dbus-errors.c')
-rw-r--r--dbus/dbus-errors.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/dbus/dbus-errors.c b/dbus/dbus-errors.c
index 3df58da0..a679e6c6 100644
--- a/dbus/dbus-errors.c
+++ b/dbus/dbus-errors.c
@@ -42,6 +42,11 @@
* if (result != DBUS_RESULT_SUCCESS)
* printf ("an error occurred\n");
* @endcode
+ *
+ * @todo add docs with DBusError
+ *
+ * @todo add dbus_error_is_set() to check
+ * whether an error is set.
*
* @{
*/
@@ -52,6 +57,14 @@ typedef struct
char *message; /**< error message */
unsigned int const_message : 1; /** Message is not owned by DBusError */
+
+ unsigned int dummy2 : 1; /**< placeholder */
+ unsigned int dummy3 : 1; /**< placeholder */
+ unsigned int dummy4 : 1; /**< placeholder */
+ unsigned int dummy5 : 1; /**< placeholder */
+
+ void *padding1; /**< placeholder */
+
} DBusRealError;
/**