]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdeModulePkg/Include/Protocol/ConsoleControl.h
clean up the un-suitable ';' location when declaring the functions.
[mirror_edk2.git] / MdeModulePkg / Include / Protocol / ConsoleControl.h
index c894302c66cf264ae5a414b0fb474133de2d8264..b14b54d028a2e0d4fb27337434ad1e6af9526cad 100644 (file)
@@ -1,6 +1,8 @@
-/*++ \r
+/** @file\r
 \r
-Copyright (c) 2006, Intel Corporation                                                         \r
+  This protocol provides the interfaces to Get/Set the current video mode for GOP/UGA screen\r
+\r
+Copyright (c) 2006 - 2008, Intel Corporation                                                         \r
 All rights reserved. This program and the accompanying materials                          \r
 are licensed and made available under the terms and conditions of the BSD License         \r
 which accompanies this distribution.  The full text of the license may be found at        \r
@@ -9,15 +11,7 @@ http://opensource.org/licenses/bsd-license.php
 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,                     \r
 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.             \r
 \r
-Module Name:\r
-\r
-  ConsoleControl.h\r
-\r
-Abstract:\r
-\r
-  Abstraction of a Text mode or UGA screen\r
-\r
---*/\r
+**/\r
 \r
 #ifndef __CONSOLE_CONTROL_H__\r
 #define __CONSOLE_CONTROL_H__\r
@@ -34,81 +28,61 @@ typedef enum {
   EfiConsoleControlScreenMaxValue\r
 } EFI_CONSOLE_CONTROL_SCREEN_MODE;\r
 \r
+/**\r
+  Return the current video mode information. Also returns info about existence\r
+  of Graphics Output devices or UGA Draw devices in system, and if the Std In device is locked. All the\r
+  arguments are optional and only returned if a non NULL pointer is passed in.\r
 \r
+  @param  This                    Protocol instance pointer.\r
+  @param  Mode                    Are we in text of grahics mode.\r
+  @param  GopExists               TRUE if GOP Spliter has found a GOP/UGA device\r
+  @param  StdInLocked             TRUE if StdIn device is keyboard locked\r
+\r
+  @retval EFI_SUCCESS             Video mode information is returned.\r
+  @retval EFI_INVALID_PARAMETER   Invalid parameters if Mode == NULL.\r
+\r
+**/\r
 typedef\r
 EFI_STATUS\r
-(EFIAPI *EFI_CONSOLE_CONTROL_PROTOCOL_GET_MODE) (\r
+(EFIAPI *EFI_CONSOLE_CONTROL_PROTOCOL_GET_MODE)(\r
   IN  EFI_CONSOLE_CONTROL_PROTOCOL      *This,\r
   OUT EFI_CONSOLE_CONTROL_SCREEN_MODE   *Mode,\r
-  OUT BOOLEAN                           *UgaExists,   OPTIONAL  \r
-  OUT BOOLEAN                           *StdInLocked  OPTIONAL\r
-  )\r
-/*++\r
-\r
-  Routine Description:\r
-    Return the current video mode information. Also returns info about existence\r
-    of UGA Draw devices in system, and if the Std In device is locked. All the\r
-    arguments are optional and only returned if a non NULL pointer is passed in.\r
-\r
-  Arguments:\r
-    This - Protocol instance pointer.\r
-    Mode        - Are we in text of grahics mode.\r
-    UgaExists   - TRUE if UGA Spliter has found a UGA device\r
-    StdInLocked - TRUE if StdIn device is keyboard locked\r
+  OUT BOOLEAN                           *GopUgaExists,  OPTIONAL  \r
+  OUT BOOLEAN                           *StdInLocked    OPTIONAL\r
+  );\r
 \r
-  Returns:\r
-    EFI_SUCCESS     - Mode information returned.\r
+/**\r
+  Set the current video mode to either text or graphics. \r
 \r
---*/\r
-;\r
+  @param  This                    Protocol instance pointer.\r
+  @param  Mode                    Mode is to be set.\r
 \r
+  @retval EFI_SUCCESS             Mode is set.\r
+  @retval EFI_INVALID_PARAMETER   Mode is not the valid mode value.\r
+  @retval EFI_UNSUPPORTED         Mode is unsupported by console device.\r
 \r
+**/\r
 typedef\r
 EFI_STATUS\r
-(EFIAPI *EFI_CONSOLE_CONTROL_PROTOCOL_SET_MODE) (\r
+(EFIAPI *EFI_CONSOLE_CONTROL_PROTOCOL_SET_MODE)(\r
   IN  EFI_CONSOLE_CONTROL_PROTOCOL      *This,\r
   OUT EFI_CONSOLE_CONTROL_SCREEN_MODE   Mode\r
-  )\r
-/*++\r
+  );\r
 \r
-  Routine Description:\r
-    Set the current mode to either text or graphics. Graphics is\r
-    for Quiet Boot.\r
-\r
-  Arguments:\r
-    This  - Protocol instance pointer.\r
-    Mode  - Mode to set the \r
-\r
-  Returns:\r
-    EFI_SUCCESS     - Mode information returned.\r
-\r
---*/\r
-;\r
+/**\r
+  Copy the Password and enable state variable and then arm the periodic timer\r
 \r
+  @retval EFI_SUCCESS              Lock the StdIn device\r
+  @retval EFI_INVALID_PARAMETER    Password is NULL\r
+  @retval EFI_OUT_OF_RESOURCES     Buffer allocation to store the big password fails\r
 \r
+**/\r
 typedef\r
 EFI_STATUS\r
-(EFIAPI *EFI_CONSOLE_CONTROL_PROTOCOL_LOCK_STD_IN) (\r
+(EFIAPI *EFI_CONSOLE_CONTROL_PROTOCOL_LOCK_STD_IN)(\r
   IN  EFI_CONSOLE_CONTROL_PROTOCOL      *This,\r
   IN CHAR16                             *Password\r
-  )\r
-/*++\r
-\r
-  Routine Description:\r
-    Lock Std In devices until Password is typed.\r
-\r
-  Arguments:\r
-    This     - Protocol instance pointer.\r
-    Password - Password needed to unlock screen. NULL means unlock keyboard\r
-\r
-  Returns:\r
-    EFI_SUCCESS      - Mode information returned.\r
-    EFI_DEVICE_ERROR - Std In not locked\r
-\r
---*/\r
-;\r
-\r
-\r
+  );\r
 \r
 struct _EFI_CONSOLE_CONTROL_PROTOCOL {\r
   EFI_CONSOLE_CONTROL_PROTOCOL_GET_MODE           GetMode;\r