|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| No
| Win32s
| No
| Import Library
| user-defined
| Header File
| winuser.h
| Unicode
| WinNT
| Platform Notes
| DESKTOPENUMPROC
|
|
|
EnumDesktopProc
The EnumDesktopProc function is an application-defined callback function that receives a desktop
name as a result of a call to the EnumDesktops function.
BOOL CALLBACK EnumDesktopProc(
LPTSTR lpszDesktop,
| // name of a desktop
| LPARAM lParam
| // value specified in EnumDesktops call
| );
|
|
Parameters
lpszDesktop
Points to the null-terminated name of a desktop.
lParam
Specifies the application-defined value given in the EnumDesktops function.
Return Values
To continue enumeration, the callback function must return TRUE. To stop
enumeration, it must return FALSE.
Remarks
The EnumDesktopProc function is a placeholder for the application-defined function name. The DESKTOPENUMPROC type is a pointer to an EnumDesktopProc function.
See Also
EnumDesktops
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
TMS Scripter Studio Pro components for Delphi/C++Builder
More Online Helps
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|