Peekconsoleinput

[DllImport("Kernel32.dll", SetLastError = true)][return: MarshalAs(UnmanagedType.Bool)]
public static extern bool PeekConsoleInput(IntPtr hConsoleInput,
   [Out] INPUT_RECORD[] lpBuffer,
   uint nLength,
   out uint lpNumberOfEventsRead
);

Microsoft documentation: Link

Last updated