(Page 8 of 14 in this chapter)
agmGetVersion
Description
- Retrieves the AGM library version and build date.
Prototype
- DWORD agmGetVersion ( const char **version,
const char **builddate)
- version Pointer to a variable to receive a pointer to a constant string containing the version number for the AGM library.
- builddate Pointer to a variable to receive a pointer to a constant string containing the build date for the AGM library.
Return Values
Details
- This function retrieves the AGM library version and build date from the library.
Example
void banner (void)
{
const char *version = NULL;
const char *builddate = NULL;
agmGetVersion (&version, &builddate);
printf ("AGM library version %s, %s\n\n",
version, builddate);
return;
}
(Page 8 of 14 in this chapter)
tech_support@nmss.com
Copyright © 1998, Natural MicroSystems, Inc. All rights
reserved.