Updated: October 28, 2024 |
Find the next control with the given name and interface
#include <aoi.h> const AOICtrl_t *AoIterateName(const char *name, const char *iname, int32_t version, int32_t *cookie);
This function iterates through all available AOI controls, returning each one that has a given name (if specified) and an interface with the given interface name and version (if specified). Controls are named only if they declare the Name interface in their interfaces list.
It's useful to call this function when you don't want to use AoFindName() because you want to examine the addon's strings (using AoGetStrings()) or interfaces (using AoHasInterface()) before you decide whether to load the DLL. It's also useful for detecting when you have multiple controls with the same name so you can write more robust code that examines the interfaces in each control and picks the best control to use.
A pointer to an AOICtrl_t structure for a control that matches the search criteria, or NULL if no such control was found.
QNX Neutrino