EssGInit

Description

EssGInit() initializes the Essbase Grid API.

Syntax

ESSG_FUNC_M EssGInit (pInitStruct, pHandle);
ESSG_PINIT_T pInitStruct
ESSG_PHANDLE_T pHandle

Parameters

pInitStructPointer to a structure containing useful information for the EGAPI.
pHandlePointer to the handle sent back from the EGAPI.

Return Value

If successful, returns ESSG_STS_NOERR.

Notes

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;

sts = EssGInit(&InitStruct, &Handle);

See Also

Using the Grid API Functions
Grid API Structures