Return TypeFunction nameArguments
hzEcodehdbDatatype::SetBasetype(hdbBasetype,)

Declared and defined in file: hzDatabase.h

Function Logic:

0:START 1:unknown 2:Return E_SEQUENCE 3:m_Basetype 4:Return E_OK

Function body:

hzEcode hdbDatatype::SetBasetype (hdbBasetype bt)
   {
       if (m_Basetype != BASETYPE_UNDEF && m_Basetype != BASETYPE_CPP_UNDEF && m_Basetype != BASETYPE_HZO_UNDEF)
           return E_SEQUENCE ;
       m_Basetype = bt ;
       return E_OK ;
   }