Function
Gtktest_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.
| This function is not directly available to language bindings | 
Parameters
| argcp | int* | 
| Address of the  | |
| The argument will be modified by the function. | |
| argvp | An array of char** | 
| Address of the  | |
| The argument will be modified by the function. | |
| The length of the array is specified in the argcpargument. | |
| The called function takes ownership of the data, and is responsible for freeing it. | |
| Each element is a NUL terminated UTF-8 string. | |
| ... |  | 
| Currently unused. |