Function
Gtk.test_init
Declaration [src]
void
gtk_test_init (
int* argcp,
char*** argvp,
...
)
Description [src]
This function is used to initialize a GTK test program.
It will in turn call g_test_init()
and gtk_init()
to properly
initialize the testing framework and graphical toolkit. It’ll
also set the program’s locale to “C”. This is done to make test
program environments as deterministic as possible.
Like gtk_init()
and g_test_init()
, any known arguments will be
processed and stripped from argc
and argv
.
Parameters
argcp |
int* |
Address of the |
|
Direction: in-out | |
The data is owned by the caller of the function | |
argvp |
An array of char** |
Address of the
|
|
Direction: in-out | |
The length of the array is in the argcp argument | |
The called function takes ownership of the data, and is responsible for freeing it | |
... |
|
currently unused |