X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=MdePkg%2FInclude%2FProtocol%2FSimpleTextIn.h;h=0716b736742cfdf2c1b6b472ed6c6ac47535057d;hp=d7d58874e5e0f37d38dd5114dff076b86e0c1cf2;hb=44717a398fddc4df1f4aeaa70bcd7a043187ed34;hpb=99e8ed219f48b82694424e46c9512d4929d9d54e diff --git a/MdePkg/Include/Protocol/SimpleTextIn.h b/MdePkg/Include/Protocol/SimpleTextIn.h index d7d58874e5..0716b73674 100644 --- a/MdePkg/Include/Protocol/SimpleTextIn.h +++ b/MdePkg/Include/Protocol/SimpleTextIn.h @@ -96,8 +96,7 @@ EFI_STATUS (EFIAPI *EFI_INPUT_RESET)( IN EFI_SIMPLE_TEXT_INPUT_PROTOCOL *This, IN BOOLEAN ExtendedVerification - ) -; + ); /** Reads the next keystroke from the input device. The WaitForKey Event can @@ -117,28 +116,18 @@ EFI_STATUS (EFIAPI *EFI_INPUT_READ_KEY)( IN EFI_SIMPLE_TEXT_INPUT_PROTOCOL *This, OUT EFI_INPUT_KEY *Key - ) -; - -/** - @par Protocol Description: - The EFI_SIMPLE_TEXT_INPUT_PROTOCOL is used on the ConsoleIn device. - It is the minimum required protocol for ConsoleIn. - - @param Reset - Reset the ConsoleIn device. - - @param ReadKeyStroke - Returns the next input character. - - @param WaitForKey - Event to use with WaitForEvent() to wait for a key to be available. - -**/ + ); +/// +/// The EFI_SIMPLE_TEXT_INPUT_PROTOCOL is used on the ConsoleIn device. +/// It is the minimum required protocol for ConsoleIn. +/// struct _EFI_SIMPLE_TEXT_INPUT_PROTOCOL { EFI_INPUT_RESET Reset; EFI_INPUT_READ_KEY ReadKeyStroke; + /// + /// Event to use with WaitForEvent() to wait for a key to be available + /// EFI_EVENT WaitForKey; };