XrmStringToBindingQuarkList

Syntax

XrmStringToBindingQuarkList(string, bindings_return, quarks_return)
     char *string;
     XrmBindingList bindings_return;
     XrmQuarkList quarks_return;

Arguments

string Specifies the string for which a quark list is to be allocated.
bindings_return Returns the binding list. The caller must allocate sufficient space for the binding list before calling XrmStringToBindingQuarkList().
quarks_return Returns the list of quarks. The caller must allocate sufficient space for the quarks list before calling XrmStringToBindingQuarkList().

Description

Component names in the list are separated by a period or an asterisk character. The string must be in the format of a valid ResourceName (see "Resource File Syntax"). If the string does not start with a period or an asterisk, a tight binding is assumed. For example, the string ``*a.b*c'' becomes:

quarks: a b c
bindings: loose tight loose

See also

XrmGetResource(), XrmInitialize(), XrmMergeDatabases(), XrmPermStringToQuark(), XrmPutResource(), XrmQuarkToString(), XrmStringToBindingQuarkList(), XrmStringToQuark(), XrmUniqueQuark(), "Quarks".
Christophe Tronche, ch@tronche.com