private List <IntPtr> EnumExplorer(bool fExcludeCurrent)
        {
            lstExploererHwnd = new List <IntPtr>();

            PInvoke_QTWM.EnumWindows(
                EnumExplorerCallback,
                fExcludeCurrent ? pluginServer.ExplorerHandle : IntPtr.Zero);

            return(lstExploererHwnd);
        }
Example #2
0
        private List <IntPtr> EnumExplorer(bool fExcludeCurrent)
        {
            this.lstExploererHwnd = new List <IntPtr>();

            PInvoke_QTWM.EnumWindows(
                new EnumWndProc(this.EnumExplorerCallback),
                fExcludeCurrent ? this.pluginServer.ExplorerHandle : IntPtr.Zero);

            return(this.lstExploererHwnd);
        }