This manual page is for Mac OS X version 10.6.3

If you are running a different version of Mac OS X, view the documentation locally:

  • In Terminal, using the man(1) command

Reading manual pages

Manual pages are intended as a quick reference for people who already understand a technology.

  • For more information about the manual page format, see the manual page for manpages(5).

  • For more information about this technology, look for other documentation in the Apple Reference Library.

  • For general information about writing shell scripts, read Shell Scripting Primer.



XrmEnumerateDatabase(3)                        XLIB FUNCTIONS                        XrmEnumerateDatabase(3)



NAME
       XrmEnumerateDatabase - enumerate resource database entries

SYNTAX
       #define   XrmEnumAllLevels       0
       #define   XrmEnumOneLevel        1

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

ARGUMENTS
       database  Specifies the resource database.

       name_prefix
                 Specifies the resource name prefix.

       class_prefix
                 Specifies the resource class prefix.

       mode      Specifies the number of levels to enumerate.

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

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

DESCRIPTION
       The 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 XrmEnumOneLevel, a resource must match
       the given name/class prefix with just a single name and class appended.  If mode is XrmEnumAllLevels,
       the resource must match the given name/class prefix with one or more names and classes appended.  If
       the procedure returns True, the enumeration terminates and the function returns True.  If the proce-dure procedure
       dure always returns False, all matching resources are enumerated and the function returns False.

       The procedure is called with the following arguments:

       (*proc)(database, bindings, quarks, type, value, arg)
            XrmDatabase *database;
            XrmBindingList bindings;
            XrmQuarkList quarks;
            XrmRepresentation *type;
            XrmValue *value;
            XPointer arg;

       The bindings and quarks lists are terminated by 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.

SEE ALSO
       XrmGetResource(3X11), XrmInitialize(3X11), XrmPutResource(3X11)
       Xlib - C Language X Interface



X Version 11                                    libX11 1.2.1                         XrmEnumerateDatabase(3)

Reporting Problems

The way to report a problem with this manual page depends on the type of problem:

Content errors
Report errors in the content of this documentation with the feedback links below.
Bug reports
Report bugs in the functionality of the described tool or API through Bug Reporter.
Formatting problems
Report formatting mistakes in the online version of these pages with the feedback links below.

Did this document help you? Yes It's good, but... Not helpful...