wl_display_listener.error

fatal error event

The error event is sent out when a fatal (non-recoverable) error has occurred. The object_id argument is the object where the error occurred, most often in response to a request to that object. The code identifies the error and is defined by the object interface. As such, each interface defines its own set of error codes. The message is a brief description of the error, for (debugging) convenience.

struct wl_display_listener
void function(void* data, wl_display* wl_display, void* object_id, uint code, const(char)* message) error;

Meta