EssGetAPIVersion() returns the version of the Essbase API used to compile the current application.
ESS_FUNC_M EssGetAPIVersion (Version);
ESS_PULONG_T | Version |
Version | Version number of API. Hex value, in C notation, with the following format:
0x00000000
For example, 0x0004.0000 represents Release 4.0, and 0x0003.0002 represents Release 3.2. |
ESS_VOID_T ESS_GetAPIVersion() { ESS_FUNC_M sts = ESS_STS_NOERR; ESS_ULONG_T Version; sts = EssGetAPIVersion(&Version); if(!sts) printf("API Version %x\n",Version); }EssGetObjectInfo()