XrmQGetResource

Syntax

Bool XrmQGetResource(database, quark_name, quark_class, quark_type_return, value_return)
     XrmDatabase database;
     XrmNameList quark_name;
     XrmClassList quark_class;
     XrmRepresentation *quark_type_return;
     XrmValue *value_return;

Arguments

database Specifies the database that is to be used.
quark_name Specifies the fully qualified name of the value being retrieved (as a quark).
quark_class Specifies the fully qualified class of the value being retrieved (as a quark).
quark_type_return Returns the representation type of the destination (as a quark).
value_return Returns the value in the database.

Description

The XrmQGetResource() function retrieves a resource from the specified database. It takes a fully qualified name/class pair, a destination resource representation, and the address of a value (size/address pair). The value and returned type point into database memory; therefore, you must not modify the data.

See also

XrmGetResource(), XrmInitialize(), XrmMergeDatabases(), XrmPutResource(), XrmQGetResource(), XrmQGetSearchList(), XrmQGetSearchResource(), XrmUniqueQuark(), "Looking Up Resources".
Christophe Tronche, [email protected]