Function
GtkModuleInitFunc
Description [src]
Each GTK+ module must have a function gtk_module_init()
with this prototype.
This function is called after loading the module.
Parameters
argc
-
Type:
gint*
GTK+ always passes
NULL
for this argument.The argument can be NULL
.The data is owned by the caller of the function. argv
-
Type: An array of
gchar**
GTK+ always passes
NULL
for this argument.The argument can be NULL
.The length of the array is specified in the argc
argument.The data is owned by the caller of the function. Each element is a NUL terminated UTF-8 string.