EssGGetResults() retrieves information about the data returned after an operation has been completed.
ESSG_FUNC_M EssGGetResults (hGrid, ulOptions, pRangeOut, pState);
ESSG_HGRID_T | hGrid |
ESSG_ULONG_T | ulOptions |
ESSG_PRANGE_T | pRangeOut |
ESSG_PUSHORT_T | pState |
hGrid | Handle passed back from EssGNewGrid. |
ulOptions | Reserved for future use. Should be set to zero. |
pRangeOut | Describes the extent of the data returned from the server. This parameter describes the total amount of data that will be returned. The caller can break up the retrieval with multiple calls to EssGGetRows. |
pState | Variable for the return
of the state of the operation. This can be one of the following values:
|
If successful, returns ESSG_STS_NOERR.
None.
sts = EssGGetResults(hGrid, 0, &rDataRangeOut, &usState);See an example that uses this code in the EssGBeginRetrieve Example section.