D-Bus 1.14.10
Data Structures | Macros | Functions

Error reporting internals. More...

Data Structures

struct  DBusRealError
 Internals of DBusError. More...
 

Macros

#define DBUS_ERROR_INIT   { NULL, NULL, TRUE, 0, 0, 0, 0, NULL }
 Expands to a suitable initializer for a DBusError on the stack. More...
 

Functions

 _DBUS_STATIC_ASSERT (sizeof(DBusRealError)==sizeof(DBusError))
 

Detailed Description

Error reporting internals.

Macro Definition Documentation

◆ DBUS_ERROR_INIT

#define DBUS_ERROR_INIT   { NULL, NULL, TRUE, 0, 0, 0, 0, NULL }

Expands to a suitable initializer for a DBusError on the stack.

Declaring a DBusError with:

do_things_with (&error);
#define DBUS_ERROR_INIT
Expands to a suitable initializer for a DBusError on the stack.
Definition: dbus-errors.h:62
Object representing an exception.
Definition: dbus-errors.h:49

is a more concise form of:

DBusError error;
dbus_error_init (&error);
do_things_with (&error);
void dbus_error_init(DBusError *error)
Initializes a DBusError structure.
Definition: dbus-errors.c:188

Definition at line 62 of file dbus-errors.h.