Add the login POST URL. This

Return TypeFunction nameArguments
hzEcodehdsApp::SetLoginPost(hzString&,hzString&,hzString&,hzString&,)

Declared in file: hzDissemino.h
Defined in file : hdsCore.cpp

Function Logic:

0:START 1:m_LoginPost m_LoginFail m_LoginAuth m_LoginResume 2:Return E_OK

Function body:

hzEcode hdsApp::SetLoginPost (hzString& post)hzString& fail, hzString& auth, hzString& resume, 
{
   //  Category: Dissemino System Initialization
   //  
   //  Add the login POST URL. This 
   m_LoginPost = post ;        //  The URL to which login form submissions must be posted
   m_LoginFail = fail ;        //  The URL the user will be directed to in event of username/password mismatch
   m_LoginAuth = auth ;        //  The URL the user will be directed to in event of successful authentication
   m_LoginResume = resume ;    //  The URL the user will be directed to in event of successful session resumption
   return E_OK ;
}