20 lines
397 B
C#
20 lines
397 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.Services;
|
||
|
|
|
||
|
|
public enum GtkResponseType
|
||
|
|
{
|
||
|
|
None = -1,
|
||
|
|
Reject = -2,
|
||
|
|
Accept = -3,
|
||
|
|
DeleteEvent = -4,
|
||
|
|
Ok = -5,
|
||
|
|
Cancel = -6,
|
||
|
|
Close = -7,
|
||
|
|
Yes = -8,
|
||
|
|
No = -9,
|
||
|
|
Apply = -10,
|
||
|
|
Help = -11
|
||
|
|
}
|