Exemple #1
0
 public int GetBindInfoEx(ref uint grfBINDF, ref BINDINFO pbindinfo, ref uint grfBINDF2, ref uint pdwReserved)
 {
     if (m_GetBindInfoExFunc == null)
     {
         var fp = GetFunctionPointer(5);
         m_GetBindInfoExFunc = (GetBindInfoExFunc)Marshal.GetDelegateForFunctionPointer(fp, typeof(GetBindInfoExFunc));
     }
     return(m_GetBindInfoExFunc(m_ptr, ref grfBINDF, ref pbindinfo, ref grfBINDF2, ref pdwReserved));
 }
 public int GetBindInfo(ref uint grfBINDF, ref BINDINFO pbindinfo)
 {
     if (m_GetBindInfoFunc == null)
     {
         var fp = GetFunctionPointer(3);
         m_GetBindInfoFunc = (GetBindInfoFunc)Marshal.GetDelegateForFunctionPointer(fp, typeof(GetBindInfoFunc));
     }
     return(m_GetBindInfoFunc(m_ptr, ref grfBINDF, ref pbindinfo));
 }