|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| No
| Win32s
| No
| Import Library
| user-defined
| Header File
| winuser.h
| Unicode
| WinNT
| Platform Notes
| WINSTAENUMPROC
|
|
|
EnumWindowStationProc
The EnumWindowStationProc function is an application-defined callback function that receives a window
station name as a result of a call to the EnumWindowStations function.
BOOL EnumWindowStationProc(
LPTSTR lpszWindowStation
| // name of a window station
| LPARAM lParam
| // value specified in EnumWindowStations call
| );
|
|
Parameters
lpszWindowStation
Points to the null-terminated name of a window station.
lParam
Specifies the application-defined value given in the EnumWindowStations function.
Return Values
To continue enumeration, the callback function must return TRUE. To stop
enumeration, it must return FALSE.
Remarks
EnumWindowStationProc is a placeholder for the application-defined function name. The WINSTAENUMPROC type is a pointer to an EnumWindowStationProc function.
See Also
EnumWindowStations
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
|