Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than Interfaces, prefix the name with the module name and a period.
[ComImport]
[Guid("0C6C4200-C589-11D0-999A-00C04FD655E1")]
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
interface IShellIconOverlayIdentifier {
[PreserveSig] int IsMemberOf(
[MarshalAs(UnmanagedType.LPWStr)] string pwszPath,
[MarshalAs(UnmanagedType.U4)] int dwAttrib);
void GetOverlayInfo(
[MarshalAs(UnmanagedType.LPWStr)] out string pwszIconFile,
int cchMax,
out int pIndex,
[MarshalAs(UnmanagedType.U4)] out ISIOI pdwFlags);
void GetPriority(
out int pPriority);
}
VB Definition:
<ComImport> _
<Guid("0C6C4200-C589-11D0-999A-00C04FD655E1")> _
<InterfaceType(ComInterfaceType.InterfaceIsIUnknown)> _
Interface IShellIconOverlayIdentifier
<PreserveSig> Function IsMemberOf( _
<MarshalAs(UnmanagedType.LPWStr)> pwszPath As String, _
<MarshalAs(UnmanagedType.U4)> dwAttrib As Integer) As Integer
Sub GetOverlayInfo( _
<MarshalAs(UnmanagedType.LPWstr)> ByRef pwszIconFile As String, _
cchMax As Integer, _
ByRef pIndex As Integer, _
<MarshalAs(UnmanagedType.U4)> ByRef pdwFlags As ISIOI)
Sub GetPriority( _
ByRef pPriority As Integer)
End Interface