1. NAME

XrmEnumerateDatabase - enumerate resource database entries

2. SYNTAX

lw(.5i) lw(2i) lw(2.5i).
T{
#define
T} T{
.ZN XrmEnumAllLevels
T} T{
0
T}
T{
#define
T} T{
.ZN XrmEnumOneLevel
T} T{
1
T}

Bool XrmEnumerateDatabase(XrmDatabase database, XrmNameList name_prefix, XrmClassList class_prefix, int mode, Bool (*proc)(), XPointer arg);

3. ARGUMENTS

database 1i Specifies the resource database.

name_prefix 1i Specifies the resource name prefix.

class_prefix 1i Specifies the resource class prefix.

mode 1i Specifies the number of levels to enumerate.

proc 1i Specifies the procedure that is to be called for each matching entry.

arg 1i Specifies the user-supplied argument that will be passed to the procedure.

4. DESCRIPTION

The .ZN XrmEnumerateDatabase function calls the specified procedure for each resource in the database that would match some completion of the given name/class resource prefix. The order in which resources are found is implementation-dependent. If mode is .ZN XrmEnumOneLevel , a resource must match the given name/class prefix with just a single name and class appended. If mode is .ZN XrmEnumAllLevels , the resource must match the given name/class prefix with one or more names and classes appended. If the procedure returns .ZN True , the enumeration terminates and the function returns .ZN True . If the procedure always returns .ZN False , all matching resources are enumerated and the function returns .ZN False .

The procedure is called with the following arguments:

.TA .5i 3i .5i 3i (*proc)(database, bindings, quarks, type, value, arg) XrmDatabase *database; XrmBindingList bindings; XrmQuarkList quarks; XrmRepresentation *type; XrmValue *value; XPointer arg; .De

The bindings and quarks lists are terminated by .ZN NULLQUARK . Note that pointers to the database and type are passed, but these values should not be modified.

The procedure must not modify the database. If Xlib has been initialized for threads, the procedure is called with the database locked and the result of a call by the procedure to any Xlib function using the same database is not defined.

5. SEE ALSO