Function

Finchstart

Declaration [src]

gboolean
finch_start (
  int* argc,
  char*** argv
)

Description [src]

Start finch with the given command line arguments.

Parameters

argc

Type: int*

Address of the argc parameter of your main() function (or 0 if argv is NULL). This will be changed if any arguments were handled.

The data is owned by the caller of the function.
argv

Type: char***

Address of the argv parameter of main(), or NULL. Any options understood by Finch are stripped before return.

The data is owned by the caller of the function.
The value is a NUL terminated UTF-8 string.

Return value

Type: gboolean

No description available.