chore: comments for event struct

develop
paring 2022-11-03 21:18:05 +09:00
parent 8fd4c05a2f
commit a22bd2ba7e
Signed by: pikokr
GPG Key ID: DB839724AD14EC9F
1 changed files with 14 additions and 3 deletions

View File

@ -1,13 +1,24 @@
using System.Diagnostics.CodeAnalysis;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
namespace SkyHook namespace SkyHook
{ {
[StructLayout(LayoutKind.Sequential)] [StructLayout(LayoutKind.Sequential)]
[SuppressMessage("ReSharper", "MemberCanBePrivate.Global")]
public struct SkyHookEvent public struct SkyHookEvent
{ {
public ulong Time; /// <summary>
public short Type; /// When the key was pressed
public uint Key; /// </summary>
public readonly ulong Time;
/// <summary>
/// The key is pressed or released
/// </summary>
public readonly EventType Type;
/// <summary>
/// The key number that was pressed or released
/// </summary>
public readonly uint Key;
} }
public enum EventType public enum EventType