Commit a2d0a3c1 authored by claes's avatar claes

aref() implemented

parent 7b057e27
...@@ -84,7 +84,7 @@ wb_adrep::wb_adrep( wb_orep& o): m_nRef(0), m_orep(&o), m_sts(LDH__SUCCESS), ...@@ -84,7 +84,7 @@ wb_adrep::wb_adrep( wb_orep& o): m_nRef(0), m_orep(&o), m_sts(LDH__SUCCESS),
m_elements = attr.Info.Elements; m_elements = attr.Info.Elements;
m_paramindex = attr.Info.ParamIndex; m_paramindex = attr.Info.ParamIndex;
m_flags = attr.Info.Flags; m_flags = attr.Info.Flags;
m_tid = 0; m_tid = m_type;
break; break;
} }
...@@ -102,7 +102,7 @@ wb_adrep::wb_adrep( wb_orep& o): m_nRef(0), m_orep(&o), m_sts(LDH__SUCCESS), ...@@ -102,7 +102,7 @@ wb_adrep::wb_adrep( wb_orep& o): m_nRef(0), m_orep(&o), m_sts(LDH__SUCCESS),
m_elements = attr.Info.Elements; m_elements = attr.Info.Elements;
m_paramindex = attr.Info.ParamIndex; m_paramindex = attr.Info.ParamIndex;
m_flags = attr.Info.Flags; m_flags = attr.Info.Flags;
m_tid = 0; m_tid = m_type;
break; break;
} }
...@@ -121,8 +121,8 @@ wb_adrep::wb_adrep( wb_orep& o): m_nRef(0), m_orep(&o), m_sts(LDH__SUCCESS), ...@@ -121,8 +121,8 @@ wb_adrep::wb_adrep( wb_orep& o): m_nRef(0), m_orep(&o), m_sts(LDH__SUCCESS),
m_paramindex = attr.Info.ParamIndex; m_paramindex = attr.Info.ParamIndex;
m_flags = attr.Info.Flags; m_flags = attr.Info.Flags;
m_flags |= PWR_MASK_BUFFER; m_flags |= PWR_MASK_BUFFER;
m_tid = 0;
m_subClass = attr.Class; m_subClass = attr.Class;
m_tid = m_subClass;
break; break;
} }
...@@ -203,13 +203,25 @@ pwr_eBix wb_adrep::bix() ...@@ -203,13 +203,25 @@ pwr_eBix wb_adrep::bix()
pwr_sAttrRef wb_adrep::aref() pwr_sAttrRef wb_adrep::aref()
{ {
pwr_sAttrRef aref; pwr_sAttrRef aref = pwr_cNAttrRef;
aref.Objid = pwr_cNObjid;
aref.Body = bix();
aref.Offset = m_offset;
aref.Size = m_size;
if ( m_flags & PWR_MASK_POINTER)
aref.Flags.b.Indirect = 1;
if ( m_flags & PWR_MASK_ARRAY)
aref.Flags.b.Array = 1;
if ( cdh_tidIsCid( m_tid))
aref.Flags.b.ObjectAttr = 1;
if ( m_flags & PWR_MASK_CASTATTR)
aref.Flags.b.CastAttr = 1;
//aref.Objid = ;
//aref.Body = bid();
//aref.Offset = ;
//aref.Size = ;
//aref.Flags = ;
return aref; return aref;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment