| Return Type | Function name | Arguments |
|---|---|---|
| hzEcode | hzLockRWD::Setname | (const char*,) |
Declared in file: hzLock.h
Defined in file : hzLock.cpp
Function Logic:
Function body:
hzEcode hzLockRWD::Setname (const char* name)
{
if (m_name[0])
return E_SETONCE ;
strncpy(m_name, name, 15);
return E_OK ;
}