init lserp cs 5.0

This commit is contained in:
cyf
2026-07-10 15:25:05 +08:00
commit 90f3fda86a
3799 changed files with 976868 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
//
// This file manually written from cef/include/internal/cef_types.h.
// C API name: cef_event_flags_t.
//
namespace Cef3
{
using System;
/// <summary>
/// Supported event bit flags.
/// </summary>
[Flags]
public enum CefEventFlags : uint
{
None = 0,
CapsLockOn = 1 << 0,
ShiftDown = 1 << 1,
ControlDown = 1 << 2,
AltDown = 1 << 3,
LeftMouseButton = 1 << 4,
MiddleMouseButton = 1 << 5,
RightMouseButton = 1 << 6,
/// <summary>
/// Mac OS-X command key.
/// </summary>
CommandDown = 1 << 7,
NumLockOn = 1 << 8,
IsKeyPad = 1 << 9,
IsLeft = 1 << 10,
IsRight = 1 << 11,
}
}