[ CCode ( cname = "G_SEARCHPATH_SEPARATOR" ) ]
public const char SEARCHPATH_SEPARATOR
The search path separator character.
This is ':' on UNIX machines and ';' under Windows.
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