EssSetPath

Sets the ESSBASEPATH environment variable for the runtime process.

Syntax

ESS_FUNC_M EssSetPath (pszPath); 
ParameterData TypeDescription

pszPath;

ESS_STR_T

Pointer to the string describing the ESSBASEPATH environment variable

Notes

Return Value

Example

ESS_STS_T
ESS_SetPath()
{ 
   ESS_STS_T sts;
   ESS_STR_T pszPath = "C:\Hyperion\products\Essbase";
   sts = EssSetPath (pszPath);
   return sts;
}