Important: The information in this document is obsolete and should not be used for new development.
Routine Descriptor Flags
The routineDescriptorFlags field of a routine descriptor contains a set of routine descriptor flags that specify attributes of the described routine. You can use constants
to specify the routine descriptor flags. In general, you should use the constantkSelectorsAreNotIndexable
when constructing your own routine descriptors; the valuekSelectorsAreIndexable
is reserved for use by Apple.
enum { kSelectorsAreNotIndexable = (RDFlagsType)0x00, kSelectorsAreIndexable = (RDFlagsType)0x01 };Constant descriptions
kSelectorsAreNotIndexable
- For dispatched routines, the recognized routine selectors are
not contiguous.kSelectorsAreIndexable
- For dispatched routines, the recognized routine selectors are contiguous and therefore indexable.