Function
GtkPrintJobCompleteFunc
since: 4.0
Declaration
void
(* GtkPrintJobCompleteFunc) (
GtkPrintJob* print_job,
gpointer user_data,
const GError* error
)
Description [src]
The type of callback that is passed to gtk_print_job_send().
It is called when the print job has been completely sent.
Available since: 4.0
Parameters
print_job
-
Type:
GtkPrintJob
The
GtkPrintJob
The data is owned by the caller of the function. user_data
-
Type:
gpointer
User data that has been passed to
gtk_print_job_send()
The argument can be NULL
.The data is owned by the caller of the function. error
-
Type:
GError
A
GError
that contains error information if the sending of the print job failed, otherwiseNULL
.The data is owned by the caller of the function.