14 lines
419 B
C#
14 lines
419 B
C#
|
|
// Licensed to the .NET Foundation under one or more agreements.
|
||
|
|
// The .NET Foundation licenses this file to you under the MIT license.
|
||
|
|
|
||
|
|
namespace Microsoft.Maui.Platform.Linux.Interop;
|
||
|
|
|
||
|
|
public static class XCursorShape
|
||
|
|
{
|
||
|
|
public const uint XC_left_ptr = 68;
|
||
|
|
public const uint XC_hand2 = 60;
|
||
|
|
public const uint XC_xterm = 152;
|
||
|
|
public const uint XC_watch = 150;
|
||
|
|
public const uint XC_crosshair = 34;
|
||
|
|
}
|