Struct

PurpleConnectionUiOps

Description [src]

struct PurpleConnectionUiOps {
  void (* connected) (
    PurpleConnection* gc
  );
  void (* disconnected) (
    PurpleConnection* gc
  );
  void (* report_disconnect) (
    PurpleConnection* gc,
    PurpleConnectionError reason,
    const char* text
  );
  void (* _purple_reserved1) (
void
  );
  void (* _purple_reserved2) (
void
  );
  void (* _purple_reserved3) (
void
  );
  void (* _purple_reserved4) (
void
  );
}

Connection UI operations. Used to notify the user of changes to connections, such as being disconnected, and to respond to the underlying network connection appearing and disappearing. UIs should call #purple_connections_set_ui_ops() with an instance of this struct.

See List of UiOps Structures

Structure members
connected
No description available.
disconnected
No description available.
report_disconnect
No description available.
_purple_reserved1
No description available.
_purple_reserved2
No description available.
_purple_reserved3
No description available.
_purple_reserved4
No description available.