BExplorer.Shell.ShellContextMenu.GenerateSeparator C# (CSharp) Method

GenerateSeparator() private method

private GenerateSeparator ( ContextMenu view ) : void
view System.Windows.Forms.ContextMenu
return void
    private void GenerateSeparator(ContextMenu view) {
      MENUITEMINFO miidetails = new MENUITEMINFO();
      miidetails.cbSize = (uint)Marshal.SizeOf(miidetails);
      miidetails.fMask = MIIM.MIIM_FTYPE;
      miidetails.fType = 2048;
      User32.InsertMenuItem(view.Handle, 0, true, ref miidetails);
    }
    void Initialize(IListItemEx[] items) {