GetNumberOfConsoleInputEvents PROC   (MS-Windows)

   Gets the number of unread input records in the console's input buffer.
   Call GetLastError to get extended error information.


GetNumberOfConsoleInputEvents PROTO, ; get number of unread records
    handle:DWORD,                    ; input handle
    lpCount:PTR DWORD                ; pointer to counter

Returns: (BOOL) EAX = TRUE (non-zero) if successful,
                      FALSE (zero) if fails.

Argument Win Type MASM Type Description
handle HANDLE DWORD  Handle to console input buffer.
lpCount LPDWORD PTR DWORD  Pointer to a DWORD that receives the number of unread input records in the console input buffer.

Converted from CHM to HTML with chm2web Pro 2.85 (unicode)