IQueryInfo (Interfaces)
Last changed: -211.3.11.64

.
Summary
The Shell uses the IQueryInfo interface to retrieve flags and info tip information for an item that resides in an IShellFolder implementation. Info tips are usually displayed inside of a ToolTip control.

    [ComImport(),
    Guid("00021500-0000-0000-C000-000000000046"),
    InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
    public interface IQueryInfo
    {

        [PreserveSig]
        void GetInfoTip(
            int dwFlags,
            [In, Out, MarshalAs(UnmanagedType.LPWStr)]
            ref string ppwszTip);

        [PreserveSig]
        void GetInfoFlags(IntPtr pdwFlags);
    }

Documentation
IQueryInfo on MSDN