public void GetCCW(ulong addr, out IMDCCW ppCCW) { if (m_type.IsCCW(addr)) { ppCCW = new MDCCW(m_type.GetCCWData(addr)); } else { ppCCW = null; } }
/// <summary> /// Returns the CCWData for the given object. Note you may only call this function if IsCCW returns true. /// </summary> /// <param name="obj">The object.</param> /// <returns>The CCWData associated with the object, undefined result of obj is not a CCW.</returns> public ICcwData GetCCWData(ulong obj) => Converter.Convert(ClrType.GetCCWData(obj));