Returns the version number for the API.
Syntax
ESSG_FUNC_M EssGVersion (pulVersion);
| Parameter | Data Type | Description |
|---|---|---|
pulVersion | ESSG_PULONG_T | Pointer to the current version number of the Grid API. |
Notes
The number is incremented whenever changes requiring either a recompile or relink by a client occur.
You do not need to initialize the Grid API before you use this function.
Return Value
If successful, returns ESSG_STS_NOERR.
Access
None.
Example
#include <essapin.h>
#include <essgapin.h>
ESSG_FUNC_M sts = ESS_STS_NOERR;
ESSG_ULONG_T ulVersion;
/* get version number for the API */
sts = EssGVersion(&ulVersion);See Also