mirror of
https://github.com/ZuneDev/ZuneShell.dll.git
synced 2026-07-27 13:11:51 -07:00
20 lines
626 B
C#
20 lines
626 B
C#
public enum EEndpointStatus
|
|||
|
|
{
|
||
|
|
eEndpointStatusWPhoneIPDisabled = 0xF,
|
||
|
|
eEndpointStatusReadyForSync = 14,
|
||
|
|
eEndpointStatusEnumerationCompleted = 13,
|
||
|
|
eEndpointStatusEnumeratingContents = 12,
|
||
|
|
eEndpointStatusAvailable = 11,
|
||
|
|
eEndpointStatusProxyDetectionCompleted = 10,
|
||
|
|
eEndpointStatusDetectingProxy = 9,
|
||
|
|
eEndpointStatusAuthenticationCompleted = 8,
|
||
|
|
eEndpointStatusAuthenticationRequired = 7,
|
||
|
|
eEndpointStatusAuthenticationFailed = 6,
|
||
|
|
eEndpointStatusAvailabilityPending = 5,
|
||
|
|
eEndpointStatusInUse = 4,
|
||
|
|
eEndpointStatusConnected = 3,
|
||
|
|
eEndpointStatusHidden = 2,
|
||
|
|
eEndpointStatusNotPresent = 1,
|
||
|
|
eEndpointStatusUndefined = 0
|
||
|
|
}
|