ID.cs
 1  // Copyright (c) Microsoft Corporation
 2  // The Microsoft Corporation licenses this file to you under the MIT license.
 3  // See the LICENSE file in the project root for more information.
 4  
 5  // <summary>
 6  //     Package format/conversion.
 7  // </summary>
 8  // <history>
 9  //     2008 created by Truong Do (ductdo).
10  //     2009-... modified by Truong Do (TruongDo).
11  //     2023- Included in PowerToys.
12  // </history>
13  namespace MouseWithoutBorders.Core;
14  
15  internal enum ID : uint
16  {
17      NONE = 0,
18      ALL = 255,
19  }