the name of the signal to create.
see gtk_signal_new().
the type of GtkObject to associate the signal with.
how many bytes the function pointer is in the class structure for this type.
the type of the return value, or GTK_TYPE_NONE if you don't want a return value.
an array of GtkTypes, describing the prototype to the callbacks.
the signal id.
Warning gtk_signal_newv is deprecated and should not be used in newly-written code. Use g_signal_newv() instead. Creates a new signal type. (This is usually done in a class initializer.) This function take the types as an array, instead of a list following the arguments. Otherwise the same as gtk_signal_new().