Return TypeFunction nameArguments
hzEcodehzLockRWD::Setname(const char*,)

Declared in file: hzLock.h
Defined in file : hzLock.cpp

Function Logic:

0:START 1:m_name[0] 2:Return E_SETONCE 3:strncpy 4:Return E_OK

Function body:

hzEcode hzLockRWD::Setname (const char* name)
{
   if (m_name[0])
       return E_SETONCE ;
   strncpy(m_name, name, 15);
   return E_OK ;
}