Function

Gdkinit

Declaration [src]

void
gdk_init (
  gint* argc,
  gchar*** argv
)

Description [src]

Initializes the GDK library and connects to the windowing system. If initialization fails, a warning message is output and the application terminates with a call to exit(1).

Any arguments used by GDK are removed from the array and argc and argv are updated accordingly.

GTK+ initializes GDK in gtk_init() and so this function is not usually needed by GTK+ applications.

Parameters

argc

Type: gint*

The number of command line arguments.

The argument will be modified by the function.
argv

Type: An array of gchar**

The array of command line arguments.

The argument will be modified by the function.
The length of the array is specified in the argc argument.
The caller of the function takes ownership of the returned data, and is responsible for freeing it.
Each element is a NUL terminated UTF-8 string.