Function

Purplesignal_disconnect

since: 2.0

Declaration [src]

void
purple_signal_disconnect (
  void* instance,
  const char* signal,
  void* handle,
  GCallback func
)

Description [src]

Disconnects a signal handler from a signal on an object.

See purple_signal_connect()

Available since: 2.0

Parameters

instance

Type: void*

The instance to disconnect from.

The argument can be NULL.
The data is owned by the caller of the function.
signal

Type: const char*

The name of the signal to disconnect.

The data is owned by the caller of the function.
The value is a NUL terminated UTF-8 string.
handle

Type: void*

The handle of the receiver.

The argument can be NULL.
The data is owned by the caller of the function.
func

Type: GCallback

The registered function to disconnect.