Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

Search Results for "EnumDesktopWindows" in [All]

user32

.
Summary
.

static extern bool EnumDesktopWindows(IntPtr hDesktop,

.

   EnumDesktopWindowsDelegate lpfn, IntPtr lParam);

.

private delegate bool EnumDesktopWindowsDelegate(IntPtr hWnd, int lParam);

.

/// EnumDesktopWindows Demo - shows the caption of all desktop windows.

.

    [DllImport("user32.dll", EntryPoint = "EnumDesktopWindows",

.

    public static extern bool EnumDesktopWindows(IntPtr hDesktop, EnumDelegate lpEnumCallbackFunction, IntPtr lParam);

.

    if (user32.EnumDesktopWindows(IntPtr.Zero, filter, IntPtr.Zero))

.
Documentation
[EnumDesktopWindows] on MSDN

 
Access PInvoke.net directly from VS: