mirror of
https://github.com/ZuneDev/ZuneShell.dll.git
synced 2026-07-27 13:11:51 -07:00
17 lines
413 B
C#
17 lines
413 B
C#
namespace MicrosoftZuneLibrary
|
|||
|
|
{
|
||
|
|
public enum WlanTestResultCode
|
||
|
|
{
|
||
|
|
wlanTestResultTCPIPConnectivityFailure = 9,
|
||
|
|
wlanTestResultUDPConnectivityFailure = 8,
|
||
|
|
wlanTestResultFailInternal = 7,
|
||
|
|
wlanTestResultCancelled = 6,
|
||
|
|
wlanTestResultTimeout = 5,
|
||
|
|
wlanTestResultFailDhcp = 4,
|
||
|
|
wlanTestResultFailAssociate = 3,
|
||
|
|
wlanTestResultFailNoConfig = 2,
|
||
|
|
wlanTestResultRunning = 1,
|
||
|
|
wlanTestResultSuccess = 0
|
||
|
|
}
|
||
|
|
}
|