Caution: This version of this document is no longer maintained. For the latest documentation, see http://www.qnx.com/developers/docs.

AOInterface_t

The structure used to define an interface

Synopsis:

typedef struct
{
        char * name;
        int32_t version;
        void *interface;
} AOInterface_t;

Description:

The AOInterface_t structure defines an interface and contains at least the following members:

name
The name of the interface.
version
The version number of the interface.
interface
A pointer to the interface.

The interface itself can be anything you want. Typically it's a pointer to an array of function pointers, a pointer to a function, or a pointer to a string.

Classification:

QNX Neutrino

See also:

AOICtrl_t