| Return Type | Function name | Arguments |
|---|---|---|
| hzEcode | hdsApp::InitApp | (const hzDomain&,const hzString&,const hzString&,) |
Declared in file: hzDissemino.h
Defined in file : hdsCore.cpp
Function Logic:
Function body:
hzEcode hdsApp::InitApp (const hzDomain& domain, const hzString& baseDir, const hzString& rootFile)
{
_hzfunc("hdsApp::Init") ;
if (m_Domain)
return E_SETONCE ;
if (!domain || !baseDir || !rootFile)
return E_ARGUMENT ;
m_Appname = domain ;
m_Domain = domain ;
m_BaseDir = baseDir ;
m_RootFile = rootFile ;
return E_OK ;
}