Funktionreferenz


_WinAPI_EnumWindowStations


Enumerates all window stations in the current session

#include <WinAPISys.au3>
_WinAPI_EnumWindowStations ( )

Parameter

None.

Rückgabewert

Success: The array of the window station names. The zeroth array element contains the number of window station.
Failure: Sets the @error flag to non-zero.

Bemerkungen

The _WinAPI_EnumWindowStations() enumerates only those window stations for which the calling process has the
$WINSTA_ENUMERATE access right.

Siehe auch

Suche nach EnumWindowStations in der MSDN Bibliothek.

Beispiel

#include <Array.au3>
#include <WinAPISys.au3>

Local $aData = _WinAPI_EnumWindowStations()

_ArrayDisplay($aData, '_WinAPI_EnumWindowStations')