Function
Purplesignal_disconnect
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()
Parameters
instance |
void* |
The instance to disconnect from. |
|
The argument can be NULL . | |
The data is owned by the caller of the function. | |
signal |
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 |
void* |
The handle of the receiver. |
|
The argument can be NULL . | |
The data is owned by the caller of the function. | |
func |
GCallback |
The registered function to disconnect. |