Main.initCheck

This function does the same work as gtk_init() with only a single change: It does not terminate the program if the GUI can't be initialized. Instead it returns FALSE on failure. This way the application can fall back to some other means of communication with the user - for example a curses or command line interface.

class Main
static
int
initCheck
(
ref string[] argv
)

Parameters

argv string[]

Address of the argv parameter of main(). Any parameters understood by gtk_init() are stripped before return. [array length=argc]inout[allow-none]

Return Value

Type: int

TRUE if the GUI has been successfully initialized, FALSE otherwise.

Meta