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 Structures, prefix the name with the module name and a period.
ITEMIDLIST (Structures)
.
C# Definition:
/// <summary>
/// Contains a list of item identifiers.
/// </summary>
[StructLayout(LayoutKind.Sequential, CharSet=CharSet.Unicode)]
public struct ITEMIDLIST
{
/// <summary>
/// A list of item identifiers.
/// </summary>
[MarshalAs(UnmanagedType.Struct)]public SHITEMID mkid
}
struct ITEMIDLIST {
public TODO;
}
VB.NET Definition:
''' <summary>
''' Contains a list of item identifiers.
''' </summary>
<StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Unicode)> _
Public Structure ITEMIDLIST
''' <summary>
''' A list of item identifiers.
''' </summary>
<MarshalAs(UnmanagedType.Struct)>Public mkid As SHITEMID
End Structure
VB Definition:
Public Type ITEMIDLIST ' idl
mkid As SHITEMID
End Type