AOInterface_t

The structure used to define an interface

Synopsis:

#include <aoi.h>

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