EssGGetAPIInstance() gets the Essbase API initialization instance handle.
ESSG_FUNC_M EssGGetAPIInstance (Handle, pEssHinst);
ESSG_HANDLE_T | Handle |
ESSG_PPVOID_T | pEssHinst |
Handle | Handle passed back from EssGInit. |
pEssHinst | Variable for the return of the Essbase API instance handle used by the Essbase Grid API. |
If successful, returns ESSG_STS_NOERR.
None.
#include <essapin.h> #include <essgapin.h> ESSG_FUNC_M sts = ESS_STS_NOERR; ESSG_PVOID_T EssHinst; 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; /* initializes EGAPI */ sts = EssGInit(&InitStruct, Handle); /* get API initialization instance handle */ if(!sts) sts = EssGGetAPIInstance(Handle, &EssHinst);