Beispiel #1
0
 public void GetCCW(ulong addr, out IMDCCW ppCCW)
 {
     if (m_type.IsCCW(addr))
     {
         ppCCW = new MDCCW(m_type.GetCCWData(addr));
     }
     else
     {
         ppCCW = null;
     }
 }
Beispiel #2
0
 /// <summary>
 ///     Returns true if the given object is a Com-Callable-Wrapper.  This is only supported in v4.5 and later.
 /// </summary>
 /// <param name="obj">The object to check.</param>
 /// <returns>True if this is a CCW.</returns>
 public bool IsCCW(ulong obj) => ClrType.IsCCW(obj);