SEARCHPATH_SEPARATOR
Description:
[
CCode ( cname =
"G_SEARCHPATH_SEPARATOR" ) ]
public const char SEARCHPATH_SEPARATOR
Example: Get the search path separator:
public static int main (string[] args) {
// Output: ``:``
print ("%c\n", Path.SEARCHPATH_SEPARATOR);
return 0;
}
valac --pkg glib-2.0 GLib.Path.SEARCHPATH_SEPARATOR.vala