/ src / modules / MouseWithoutBorders / App / Core / ClipboardPostAction.cs
ClipboardPostAction.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  using System;
 6  using System.Diagnostics;
 7  using System.Diagnostics.CodeAnalysis;
 8  using System.Runtime.InteropServices;
 9  
10  // <summary>
11  //     Package format/conversion.
12  // </summary>
13  // <history>
14  //     2008 created by Truong Do (ductdo).
15  //     2009-... modified by Truong Do (TruongDo).
16  //     2023- Included in PowerToys.
17  // </history>
18  namespace MouseWithoutBorders.Core;
19  
20  internal enum ClipboardPostAction : uint
21  {
22      Other = 0,
23      Desktop = 1,
24      Mspaint = 2,
25  }