EssSetPath

Description

EssSetPath() sets the ARBORPATH environment variable for the current process.

Syntax

ESS_FUNC_M EssSetPath (pszPath); 
ESS_STR_TpszPath;

Parameters

pszPathPointer to the string describing the ARBORPATH environment variable

Return Value

Notes

Example

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