Files
ZuneShell.dll/ZuneDBApi/MicrosoftZuneLibrary/WirelessCiphers.cs
T

13 lines
144 B
C#
Raw Normal View History

2021-11-11 11:18:46 -06:00
namespace MicrosoftZuneLibrary
{
public enum WirelessCiphers
{
None = 0,
AES = 4,
TKIP = 2,
WEP104 = 5,
WEP40 = 1,
WEP = 257
}
}