D-Bus 1.15.8
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:64
Object representing an exception.
Definition: dbus-errors.h:51

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:190

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