Terminates the Grid API.
Syntax
ESSG_FUNC_M EssGTerm (Handle);
Parameter | Data Type | Description |
---|---|---|
Handle | ESSG_HANDLE_T | Handle to instance of the EGAPI. |
Notes
This call is required.
Signifies termination of use of the Grid API.
This call should be made only once per session and then only at the end of that session.
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_INIT_T InitStruct; ESSG_HANDLE_T Handle; InitStruct.ulVersion = ESSG_VERSION; InitStruct.ulMaxRows = 1000; InitStruct.ulMaxColumns = 200; InitStruct.pfnMessageFunc = ESS_NULL; InitStruct.pUserdata = ESS_NULL; /* initialize EGAPI */ sts = EssGInit(&InitStruct, &Handle); /* terminate the EGAPI */ if(!sts) sts = EssGTerm(Handle);
See Also