Fixed attributes on IShellView.GetItemObject

pull/180/head
dahall 2020-09-16 19:30:05 -06:00
parent 0e25c534b3
commit 82e0d01f8a
1 changed files with 3 additions and 3 deletions

View File

@ -968,7 +968,7 @@ namespace Vanara.PInvoke
/// <param name="uItem">The constants that refer to an aspect of the view.</param>
/// <param name="riid">The identifier of the COM interface being requested.</param>
/// <returns>The address that receives the interface pointer. If an error occurs, the pointer returned must be NULL.</returns>
[return: MarshalAs(UnmanagedType.IUnknown, IidParameterIndex = 1)]
[return: MarshalAs(UnmanagedType.Interface, IidParameterIndex = 1)]
object GetItemObject([In] SVGIO uItem, in Guid riid);
}
@ -1060,7 +1060,7 @@ namespace Vanara.PInvoke
/// <param name="uItem">The constants that refer to an aspect of the view.</param>
/// <param name="riid">The identifier of the COM interface being requested.</param>
/// <returns>The address that receives the interface pointer. If an error occurs, the pointer returned must be NULL.</returns>
[return: MarshalAs(UnmanagedType.IUnknown)]
[return: MarshalAs(UnmanagedType.Interface, IidParameterIndex = 1)]
new object GetItemObject(SVGIO uItem, in Guid riid);
/// <summary>
@ -1172,7 +1172,7 @@ namespace Vanara.PInvoke
/// <param name="uItem">The constants that refer to an aspect of the view.</param>
/// <param name="riid">The identifier of the COM interface being requested.</param>
/// <returns>The address that receives the interface pointer. If an error occurs, the pointer returned must be NULL.</returns>
[return: MarshalAs(UnmanagedType.IUnknown)]
[return: MarshalAs(UnmanagedType.Interface, IidParameterIndex = 1)]
new object GetItemObject(SVGIO uItem, in Guid riid);
/// <summary>