Get the object id.

Return TypeFunction nameArguments
uint32_thdbObject::GetObjId(void)

Declared in file: hzDatabase.h
Defined in file : hdbObject.cpp

Function Logic:

0:START 1:unknown 2:Return 0 3:Return m_pRoot->m_ObjId

Function body:

uint32_t hdbObject::GetObjId (void)
{
   //  Get the object id.
   //  
   //  Argument: nObjId The Object ID
   //  Returns: The object id
   if (!m_pRoot)
       return 0;
   return m_pRoot->m_ObjId ;
}