int aw_init (int build)

DESCRIPTION

Initializes the API.

CALLBACK

None (returns immediately)

NOTES

aw_init must be called before any other functions in the API.

build specifies the API build number you are coding for. The constant AW_BUILD has the current build number of the API you are using.

EXAMPLE

int		rc;

if (rc = aw_init (AW_BUILD))
  printf ("Unable to initialize the API (reason %d)\n", rc);

SEE ALSO

aw_term