Beispiel #1
0
 /// <summary>
 /// Retrieves the data type of the value associated with a key.
 /// </summary>
 /// <returns>HRESULT</returns>
 public unsafe int GetItemType(Guid key, out MFAttributeType attributeType)
 {
     fixed(MFAttributeType *pat = &attributeType)
     {
         return(InteropCalls.CalliMethodPtr(_basePtr, &key, pat, ((void **)(*(void **)_basePtr))[4]));
     }
 }
Beispiel #2
0
 public HResult GetItemType(Guid guidKey, out MFAttributeType pType)
 {
     return(m_Attribs.GetItemType(guidKey, out pType));
 }