ShellPkg/UefiShellDebug1CommandsLib: Remove unnecessary EFIAPI

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Chen A Chen <chen.a.chen@intel.com>
Reviewed-by: Jaben Carsey <jaben.carsey@intel.com>
Reviewed-by: Ruiyu Ni <Ruiyu.ni@intel.com>
This commit is contained in:
Chen A Chen 2016-09-29 14:41:41 +08:00 committed by Ruiyu Ni
parent c20bd8e1e2
commit c4e74e9b81
34 changed files with 0 additions and 241 deletions

View File

@ -68,7 +68,6 @@ typedef INT16 NODE;
@param[in] Data The dword to put. @param[in] Data The dword to put.
**/ **/
VOID VOID
EFIAPI
PutDword( PutDword(
IN UINT32 Data IN UINT32 Data
); );
@ -128,7 +127,6 @@ INT32 mHuffmanDepth = 0;
**/ **/
VOID VOID
EFIAPI
MakeCrcTable ( MakeCrcTable (
VOID VOID
) )
@ -159,7 +157,6 @@ MakeCrcTable (
@param[in] Data The dword to put. @param[in] Data The dword to put.
**/ **/
VOID VOID
EFIAPI
PutDword ( PutDword (
IN UINT32 Data IN UINT32 Data
) )
@ -188,7 +185,6 @@ PutDword (
@retval EFI_OUT_OF_RESOURCES A memory allocation failed. @retval EFI_OUT_OF_RESOURCES A memory allocation failed.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
AllocateMemory ( AllocateMemory (
VOID VOID
) )
@ -222,7 +218,6 @@ AllocateMemory (
**/ **/
VOID VOID
EFIAPI
FreeMemory ( FreeMemory (
VOID VOID
) )
@ -241,7 +236,6 @@ FreeMemory (
Initialize String Info Log data structures. Initialize String Info Log data structures.
**/ **/
VOID VOID
EFIAPI
InitSlide ( InitSlide (
VOID VOID
) )
@ -273,7 +267,6 @@ InitSlide (
**/ **/
NODE NODE
EFIAPI
Child ( Child (
IN NODE LoopVar6, IN NODE LoopVar6,
IN UINT8 LoopVar5 IN UINT8 LoopVar5
@ -298,7 +291,6 @@ Child (
@param[in] LoopVar4 The child node. @param[in] LoopVar4 The child node.
**/ **/
VOID VOID
EFIAPI
MakeChild ( MakeChild (
IN NODE LoopVar6, IN NODE LoopVar6,
IN UINT8 LoopVar5, IN UINT8 LoopVar5,
@ -325,7 +317,6 @@ MakeChild (
@param[in] Old The node to split. @param[in] Old The node to split.
**/ **/
VOID VOID
EFIAPI
Split ( Split (
IN NODE Old IN NODE Old
) )
@ -355,7 +346,6 @@ Split (
**/ **/
VOID VOID
EFIAPI
InsertNode ( InsertNode (
VOID VOID
) )
@ -484,7 +474,6 @@ InsertNode (
**/ **/
VOID VOID
EFIAPI
DeleteNode ( DeleteNode (
VOID VOID
) )
@ -579,7 +568,6 @@ DeleteNode (
@return The number of bytes actually read. @return The number of bytes actually read.
**/ **/
INT32 INT32
EFIAPI
FreadCrc ( FreadCrc (
OUT UINT8 *LoopVar7, OUT UINT8 *LoopVar7,
IN INT32 LoopVar8 IN INT32 LoopVar8
@ -612,7 +600,6 @@ FreadCrc (
@retval FALSE The operation failed due to insufficient memory. @retval FALSE The operation failed due to insufficient memory.
**/ **/
BOOLEAN BOOLEAN
EFIAPI
GetNextMatch ( GetNextMatch (
VOID VOID
) )
@ -647,7 +634,6 @@ GetNextMatch (
@param[in] LoopVar1 The index of the item to move. @param[in] LoopVar1 The index of the item to move.
**/ **/
VOID VOID
EFIAPI
DownHeap ( DownHeap (
IN INT32 i IN INT32 i
) )
@ -684,7 +670,6 @@ DownHeap (
@param[in] LoopVar1 The top node. @param[in] LoopVar1 The top node.
**/ **/
VOID VOID
EFIAPI
CountLen ( CountLen (
IN INT32 LoopVar1 IN INT32 LoopVar1
) )
@ -705,7 +690,6 @@ CountLen (
@param[in] Root The root of the tree. @param[in] Root The root of the tree.
**/ **/
VOID VOID
EFIAPI
MakeLen ( MakeLen (
IN INT32 Root IN INT32 Root
) )
@ -761,7 +745,6 @@ MakeLen (
@param[out] Code The stores codes for each symbol. @param[out] Code The stores codes for each symbol.
**/ **/
VOID VOID
EFIAPI
MakeCode ( MakeCode (
IN INT32 LoopVar8, IN INT32 LoopVar8,
IN UINT8 Len[ ], IN UINT8 Len[ ],
@ -792,7 +775,6 @@ MakeCode (
@return The root of the Huffman tree. @return The root of the Huffman tree.
**/ **/
INT32 INT32
EFIAPI
MakeTree ( MakeTree (
IN INT32 NParm, IN INT32 NParm,
IN UINT16 FreqParm[ ], IN UINT16 FreqParm[ ],
@ -876,7 +858,6 @@ MakeTree (
@param[in] x The data. @param[in] x The data.
**/ **/
VOID VOID
EFIAPI
PutBits ( PutBits (
IN INT32 LoopVar8, IN INT32 LoopVar8,
IN UINT32 x IN UINT32 x
@ -915,7 +896,6 @@ PutBits (
@param[in] LoopVar5 The number to encode. @param[in] LoopVar5 The number to encode.
**/ **/
VOID VOID
EFIAPI
EncodeC ( EncodeC (
IN INT32 LoopVar5 IN INT32 LoopVar5
) )
@ -929,7 +909,6 @@ EncodeC (
@param[in] LoopVar7 The number to encode. @param[in] LoopVar7 The number to encode.
**/ **/
VOID VOID
EFIAPI
EncodeP ( EncodeP (
IN UINT32 LoopVar7 IN UINT32 LoopVar7
) )
@ -956,7 +935,6 @@ EncodeP (
**/ **/
VOID VOID
EFIAPI
CountTFreq ( CountTFreq (
VOID VOID
) )
@ -1014,7 +992,6 @@ CountTFreq (
**/ **/
VOID VOID
EFIAPI
WritePTLen ( WritePTLen (
IN INT32 LoopVar8, IN INT32 LoopVar8,
IN INT32 nbit, IN INT32 nbit,
@ -1053,7 +1030,6 @@ WritePTLen (
Outputs the code length array for Char&Length Set. Outputs the code length array for Char&Length Set.
**/ **/
VOID VOID
EFIAPI
WriteCLen ( WriteCLen (
VOID VOID
) )
@ -1109,7 +1085,6 @@ WriteCLen (
**/ **/
VOID VOID
EFIAPI
SendBlock ( SendBlock (
VOID VOID
) )
@ -1183,7 +1158,6 @@ SendBlock (
**/ **/
VOID VOID
EFIAPI
HufEncodeStart ( HufEncodeStart (
VOID VOID
) )
@ -1205,7 +1179,6 @@ HufEncodeStart (
@param[in] LoopVar7 The 'Position' field of a Pointer. @param[in] LoopVar7 The 'Position' field of a Pointer.
**/ **/
VOID VOID
EFIAPI
CompressOutput ( CompressOutput (
IN UINT32 LoopVar5, IN UINT32 LoopVar5,
IN UINT32 LoopVar7 IN UINT32 LoopVar7
@ -1243,7 +1216,6 @@ CompressOutput (
**/ **/
VOID VOID
EFIAPI
HufEncodeEnd ( HufEncodeEnd (
VOID VOID
) )
@ -1263,7 +1235,6 @@ HufEncodeEnd (
@retval EFI_OUT_0F_RESOURCES Not enough memory for compression process. @retval EFI_OUT_0F_RESOURCES Not enough memory for compression process.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
Encode ( Encode (
VOID VOID
) )
@ -1346,7 +1317,6 @@ Encode (
@retval EFI_BUFFER_TOO_SMALL The buffer was too small. DstSize is required. @retval EFI_BUFFER_TOO_SMALL The buffer was too small. DstSize is required.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
Compress ( Compress (
IN VOID *SrcBuffer, IN VOID *SrcBuffer,
IN UINT64 SrcSize, IN UINT64 SrcSize,

View File

@ -26,7 +26,6 @@
@retval SHELL_SUCCESS The display was successful. @retval SHELL_SUCCESS The display was successful.
**/ **/
SHELL_STATUS SHELL_STATUS
EFIAPI
DisplayTheBlocks( DisplayTheBlocks(
IN CONST EFI_DEVICE_PATH_PROTOCOL *DevPath, IN CONST EFI_DEVICE_PATH_PROTOCOL *DevPath,
IN CONST UINT64 Lba, IN CONST UINT64 Lba,

View File

@ -31,7 +31,6 @@
@return A printable character representing Char. @return A printable character representing Char.
**/ **/
CHAR16 CHAR16
EFIAPI
MakePrintable( MakePrintable(
IN CONST CHAR16 Char IN CONST CHAR16 Char
) )
@ -49,7 +48,6 @@ MakePrintable(
@param[in] Size The length of memory to display. @param[in] Size The length of memory to display.
**/ **/
SHELL_STATUS SHELL_STATUS
EFIAPI
DisplayMmioMemory( DisplayMmioMemory(
IN CONST VOID *Address, IN CONST VOID *Address,
IN CONST UINTN Size IN CONST UINTN Size

View File

@ -42,7 +42,6 @@ typedef struct {
@retval The attribute string info. @retval The attribute string info.
**/ **/
CHAR16 * CHAR16 *
EFIAPI
GetAttrType ( GetAttrType (
IN CONST UINT32 Atts IN CONST UINT32 Atts
) )
@ -367,7 +366,6 @@ AppendSingleVariableToFile (
@retval SHELL_NOT_FOUND the Name/Guid pair could not be found. @retval SHELL_NOT_FOUND the Name/Guid pair could not be found.
**/ **/
SHELL_STATUS SHELL_STATUS
EFIAPI
CascadeProcessVariables ( CascadeProcessVariables (
IN CONST CHAR16 *Name OPTIONAL, IN CONST CHAR16 *Name OPTIONAL,
IN CONST EFI_GUID *Guid OPTIONAL, IN CONST EFI_GUID *Guid OPTIONAL,
@ -537,7 +535,6 @@ CascadeProcessVariables (
@retval SHELL_NOT_FOUND the Name/Guid pair could not be found. @retval SHELL_NOT_FOUND the Name/Guid pair could not be found.
**/ **/
SHELL_STATUS SHELL_STATUS
EFIAPI
ProcessVariables ( ProcessVariables (
IN CONST CHAR16 *Name OPTIONAL, IN CONST CHAR16 *Name OPTIONAL,
IN CONST EFI_GUID *Guid OPTIONAL, IN CONST EFI_GUID *Guid OPTIONAL,

View File

@ -72,7 +72,6 @@ extern BOOLEAN EditorMouseAction;
@param EFI_OUT_OF_RESOURCES A memory allocation failed. @param EFI_OUT_OF_RESOURCES A memory allocation failed.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferInit ( FileBufferInit (
VOID VOID
) )
@ -121,7 +120,6 @@ FileBufferInit (
@retval EFI_SUCCESS The backup operation was successful. @retval EFI_SUCCESS The backup operation was successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferBackup ( FileBufferBackup (
VOID VOID
) )
@ -155,7 +153,6 @@ FileBufferBackup (
@return The line structure after the advance. @return The line structure after the advance.
**/ **/
EFI_EDITOR_LINE * EFI_EDITOR_LINE *
EFIAPI
InternalEditorMiscLineAdvance ( InternalEditorMiscLineAdvance (
IN CONST UINTN Count, IN CONST UINTN Count,
IN CONST EFI_EDITOR_LINE *CurrentLine, IN CONST EFI_EDITOR_LINE *CurrentLine,
@ -195,7 +192,6 @@ InternalEditorMiscLineAdvance (
@return The line structure after the retreat. @return The line structure after the retreat.
**/ **/
EFI_EDITOR_LINE * EFI_EDITOR_LINE *
EFIAPI
InternalEditorMiscLineRetreat ( InternalEditorMiscLineRetreat (
IN CONST UINTN Count, IN CONST UINTN Count,
IN CONST EFI_EDITOR_LINE *CurrentLine, IN CONST EFI_EDITOR_LINE *CurrentLine,
@ -262,7 +258,6 @@ MoveLine (
@retval EFI_SUCCESS The backup operation was successful. @retval EFI_SUCCESS The backup operation was successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferRestoreMousePosition ( FileBufferRestoreMousePosition (
VOID VOID
) )
@ -406,7 +401,6 @@ FileBufferRestoreMousePosition (
@retval EFI_SUCCESS The operation was successful. @retval EFI_SUCCESS The operation was successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferFreeLines ( FileBufferFreeLines (
VOID VOID
) )
@ -450,7 +444,6 @@ FileBufferFreeLines (
@retval EFI_SUCCESS The cleanup was successful. @retval EFI_SUCCESS The cleanup was successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferCleanup ( FileBufferCleanup (
VOID VOID
) )
@ -537,7 +530,6 @@ FileBufferPrintLine (
@retval EFI_SUCCESS The operation was successful. @retval EFI_SUCCESS The operation was successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferRestorePosition ( FileBufferRestorePosition (
VOID VOID
) )
@ -559,7 +551,6 @@ FileBufferRestorePosition (
@retval EFI_LOAD_ERROR There was an error finding what to write. @retval EFI_LOAD_ERROR There was an error finding what to write.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferRefresh ( FileBufferRefresh (
VOID VOID
) )
@ -671,7 +662,6 @@ FileBufferRefresh (
@return The line created. @return The line created.
**/ **/
EFI_EDITOR_LINE * EFI_EDITOR_LINE *
EFIAPI
FileBufferCreateLine ( FileBufferCreateLine (
VOID VOID
) )
@ -726,7 +716,6 @@ FileBufferCreateLine (
@retval EFI_INVALID_PARAMETER Str is not a valid filename. @retval EFI_INVALID_PARAMETER Str is not a valid filename.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferSetFileName ( FileBufferSetFileName (
IN CONST CHAR16 *Str IN CONST CHAR16 *Str
) )
@ -758,7 +747,6 @@ FileBufferSetFileName (
@retval EFI_SUCCESS The operation was successful. @retval EFI_SUCCESS The operation was successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferFree ( FileBufferFree (
VOID VOID
) )
@ -785,7 +773,6 @@ FileBufferFree (
@retval EFI_INVALID_PARAMETER FileName is a directory. @retval EFI_INVALID_PARAMETER FileName is a directory.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferRead ( FileBufferRead (
IN CONST CHAR16 *FileName, IN CONST CHAR16 *FileName,
IN CONST BOOLEAN Recover IN CONST BOOLEAN Recover
@ -1280,7 +1267,6 @@ Done:
@param[out] Size The amount of the buffer used on return. @param[out] Size The amount of the buffer used on return.
**/ **/
VOID VOID
EFIAPI
GetNewLine ( GetNewLine (
IN CONST EE_NEWLINE_TYPE Type, IN CONST EE_NEWLINE_TYPE Type,
OUT CHAR8 *Buffer, OUT CHAR8 *Buffer,
@ -1387,7 +1373,6 @@ GetNewLine (
@return The actuall length. @return The actuall length.
**/ **/
UINTN UINTN
EFIAPI
UnicodeToAscii ( UnicodeToAscii (
IN CONST CHAR16 *UStr, IN CONST CHAR16 *UStr,
IN CONST UINTN Length, IN CONST UINTN Length,
@ -1416,7 +1401,6 @@ UnicodeToAscii (
@retval EFI_OUT_OF_RESOURCES There were not enough resources to write the file. @retval EFI_OUT_OF_RESOURCES There were not enough resources to write the file.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferSave ( FileBufferSave (
IN CONST CHAR16 *FileName IN CONST CHAR16 *FileName
) )
@ -1656,7 +1640,6 @@ FileBufferSave (
@retval EFI_SUCCESS The operation was successful. @retval EFI_SUCCESS The operation was successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferScrollLeft ( FileBufferScrollLeft (
VOID VOID
) )
@ -1703,7 +1686,6 @@ FileBufferScrollLeft (
@param[in] Pos Position to delete the char at ( start from 0 ). @param[in] Pos Position to delete the char at ( start from 0 ).
**/ **/
VOID VOID
EFIAPI
LineDeleteAt ( LineDeleteAt (
IN OUT EFI_EDITOR_LINE *Line, IN OUT EFI_EDITOR_LINE *Line,
IN UINTN Pos IN UINTN Pos
@ -1728,7 +1710,6 @@ LineDeleteAt (
@param[in] Src Src String. @param[in] Src Src String.
**/ **/
VOID VOID
EFIAPI
LineCat ( LineCat (
IN OUT EFI_EDITOR_LINE *Dest, IN OUT EFI_EDITOR_LINE *Dest,
IN EFI_EDITOR_LINE *Src IN EFI_EDITOR_LINE *Src
@ -1769,7 +1750,6 @@ LineCat (
@retval EFI_OUT_OF_RESOURCES A memory allocation failed. @retval EFI_OUT_OF_RESOURCES A memory allocation failed.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferDoBackspace ( FileBufferDoBackspace (
VOID VOID
) )
@ -1841,7 +1821,6 @@ FileBufferDoBackspace (
@retval EFI_OUT_OF_RESOURCES A memory allocation failed. @retval EFI_OUT_OF_RESOURCES A memory allocation failed.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferDoReturn ( FileBufferDoReturn (
VOID VOID
) )
@ -1938,7 +1917,6 @@ FileBufferDoReturn (
@retval EFI_SUCCESS @retval EFI_SUCCESS
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferDoDelete ( FileBufferDoDelete (
VOID VOID
) )
@ -2001,7 +1979,6 @@ FileBufferDoDelete (
@retval EFI_SUCCESS The operation was successful. @retval EFI_SUCCESS The operation was successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferScrollRight ( FileBufferScrollRight (
VOID VOID
) )
@ -2055,7 +2032,6 @@ FileBufferScrollRight (
@return The new string size ( include CHAR_NULL ) ( unit is Unicode character ). @return The new string size ( include CHAR_NULL ) ( unit is Unicode character ).
**/ **/
UINTN UINTN
EFIAPI
LineStrInsert ( LineStrInsert (
IN EFI_EDITOR_LINE *Line, IN EFI_EDITOR_LINE *Line,
IN CHAR16 Char, IN CHAR16 Char,
@ -2108,7 +2084,6 @@ LineStrInsert (
@retval EFI_SUCCESS The input was succesful. @retval EFI_SUCCESS The input was succesful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferAddChar ( FileBufferAddChar (
IN CHAR16 Char IN CHAR16 Char
) )
@ -2156,7 +2131,6 @@ FileBufferAddChar (
@retval EFI_OUT_OF_RESOURCES A memory allocation failed. @retval EFI_OUT_OF_RESOURCES A memory allocation failed.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferDoCharInput ( FileBufferDoCharInput (
IN CONST CHAR16 Char IN CONST CHAR16 Char
) )
@ -2207,7 +2181,6 @@ FileBufferDoCharInput (
@retval EFI_SUCCESS The operation was successful. @retval EFI_SUCCESS The operation was successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferScrollDown ( FileBufferScrollDown (
VOID VOID
) )
@ -2253,7 +2226,6 @@ FileBufferScrollDown (
@retval EFI_SUCCESS The operation was successful. @retval EFI_SUCCESS The operation was successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferScrollUp ( FileBufferScrollUp (
VOID VOID
) )
@ -2296,7 +2268,6 @@ FileBufferScrollUp (
@retval EFI_SUCCESS The operation wa successful. @retval EFI_SUCCESS The operation wa successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferPageDown ( FileBufferPageDown (
VOID VOID
) )
@ -2347,7 +2318,6 @@ FileBufferPageDown (
@retval EFI_SUCCESS The operation was successful. @retval EFI_SUCCESS The operation was successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferPageUp ( FileBufferPageUp (
VOID VOID
) )
@ -2403,7 +2373,6 @@ FileBufferPageUp (
@retval EFI_SUCCESS The operation was successful. @retval EFI_SUCCESS The operation was successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferEnd ( FileBufferEnd (
VOID VOID
) )
@ -2441,7 +2410,6 @@ FileBufferEnd (
@retval EFI_OUT_OF_RESOURCES A memory allocation failed. @retval EFI_OUT_OF_RESOURCES A memory allocation failed.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferHandleInput ( FileBufferHandleInput (
IN CONST EFI_INPUT_KEY *Key IN CONST EFI_INPUT_KEY *Key
) )
@ -2557,7 +2525,6 @@ FileBufferHandleInput (
@retval FALSE It is not above the current screen. @retval FALSE It is not above the current screen.
**/ **/
BOOLEAN BOOLEAN
EFIAPI
AboveCurrentScreen ( AboveCurrentScreen (
IN UINTN FileRow IN UINTN FileRow
) )
@ -2581,7 +2548,6 @@ AboveCurrentScreen (
@retval FALSE It is not under the current screen. @retval FALSE It is not under the current screen.
**/ **/
BOOLEAN BOOLEAN
EFIAPI
UnderCurrentScreen ( UnderCurrentScreen (
IN UINTN FileRow IN UINTN FileRow
) )
@ -2605,7 +2571,6 @@ UnderCurrentScreen (
@retval FALSE It is not to the left. @retval FALSE It is not to the left.
**/ **/
BOOLEAN BOOLEAN
EFIAPI
LeftCurrentScreen ( LeftCurrentScreen (
IN UINTN FileCol IN UINTN FileCol
) )
@ -2629,7 +2594,6 @@ LeftCurrentScreen (
@retval FALSE It is not to the right. @retval FALSE It is not to the right.
**/ **/
BOOLEAN BOOLEAN
EFIAPI
RightCurrentScreen ( RightCurrentScreen (
IN UINTN FileCol IN UINTN FileCol
) )
@ -2655,7 +2619,6 @@ RightCurrentScreen (
@return The line after advance/retreat. @return The line after advance/retreat.
**/ **/
EFI_EDITOR_LINE * EFI_EDITOR_LINE *
EFIAPI
MoveCurrentLine ( MoveCurrentLine (
IN INTN Count IN INTN Count
) )
@ -2686,7 +2649,6 @@ MoveCurrentLine (
@param[in] NewFilePosCol The column of file position ( start from 1 ). @param[in] NewFilePosCol The column of file position ( start from 1 ).
**/ **/
VOID VOID
EFIAPI
FileBufferMovePosition ( FileBufferMovePosition (
IN CONST UINTN NewFilePosRow, IN CONST UINTN NewFilePosRow,
IN CONST UINTN NewFilePosCol IN CONST UINTN NewFilePosCol
@ -2802,7 +2764,6 @@ FileBufferMovePosition (
@retval EFI_OUT_OF_RESOURCES A memory allocation failed. @retval EFI_OUT_OF_RESOURCES A memory allocation failed.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferCutLine ( FileBufferCutLine (
OUT EFI_EDITOR_LINE **CutLine OUT EFI_EDITOR_LINE **CutLine
) )
@ -2882,7 +2843,6 @@ FileBufferCutLine (
@retval EFI_OUT_OF_RESOURCES A memory allocation failed. @retval EFI_OUT_OF_RESOURCES A memory allocation failed.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferPasteLine ( FileBufferPasteLine (
VOID VOID
) )
@ -2954,7 +2914,6 @@ FileBufferPasteLine (
@retval EFI_NOT_FOUND The string Str was not found. @retval EFI_NOT_FOUND The string Str was not found.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferSearch ( FileBufferSearch (
IN CONST CHAR16 *Str, IN CONST CHAR16 *Str,
IN CONST UINTN Offset IN CONST UINTN Offset
@ -3060,7 +3019,6 @@ FileBufferSearch (
@retval EFI_OUT_OF_RESOURCES A memory allocation failed. @retval EFI_OUT_OF_RESOURCES A memory allocation failed.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferReplace ( FileBufferReplace (
IN CONST CHAR16 *Replace, IN CONST CHAR16 *Replace,
IN CONST UINTN SearchLen IN CONST UINTN SearchLen
@ -3165,7 +3123,6 @@ FileBufferReplace (
@param[in] TextY The new y-coordinate. @param[in] TextY The new y-coordinate.
**/ **/
VOID VOID
EFIAPI
FileBufferAdjustMousePosition ( FileBufferAdjustMousePosition (
IN CONST INT32 TextX, IN CONST INT32 TextX,
IN CONST INT32 TextY IN CONST INT32 TextY
@ -3242,7 +3199,6 @@ FileBufferAdjustMousePosition (
@param[in] Offset The column to start at. @param[in] Offset The column to start at.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferReplaceAll ( FileBufferReplaceAll (
IN CHAR16 *SearchStr, IN CHAR16 *SearchStr,
IN CHAR16 *ReplaceStr, IN CHAR16 *ReplaceStr,
@ -3360,7 +3316,6 @@ FileBufferReplaceAll (
Set the modified state to TRUE. Set the modified state to TRUE.
**/ **/
VOID VOID
EFIAPI
FileBufferSetModified ( FileBufferSetModified (
VOID VOID
) )

View File

@ -25,7 +25,6 @@
@param EFI_OUT_OF_RESOURCES A memory allocation failed. @param EFI_OUT_OF_RESOURCES A memory allocation failed.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferInit ( FileBufferInit (
VOID VOID
); );
@ -36,7 +35,6 @@ FileBufferInit (
@retval EFI_SUCCESS The cleanup was successful. @retval EFI_SUCCESS The cleanup was successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferCleanup ( FileBufferCleanup (
VOID VOID
); );
@ -48,7 +46,6 @@ FileBufferCleanup (
@retval EFI_LOAD_ERROR There was an error finding what to write. @retval EFI_LOAD_ERROR There was an error finding what to write.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferRefresh ( FileBufferRefresh (
VOID VOID
); );
@ -68,7 +65,6 @@ FileBufferRefresh (
@retval EFI_OUT_OF_RESOURCES A memory allocation failed. @retval EFI_OUT_OF_RESOURCES A memory allocation failed.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferHandleInput ( FileBufferHandleInput (
IN CONST EFI_INPUT_KEY * Key IN CONST EFI_INPUT_KEY * Key
); );
@ -84,7 +80,6 @@ FileBufferHandleInput (
@retval EFI_SUCCESS The backup operation was successful. @retval EFI_SUCCESS The backup operation was successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferBackup ( FileBufferBackup (
VOID VOID
); );
@ -95,7 +90,6 @@ FileBufferBackup (
@retval EFI_SUCCESS The operation was successful. @retval EFI_SUCCESS The operation was successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferRestorePosition ( FileBufferRestorePosition (
VOID VOID
); );
@ -110,7 +104,6 @@ FileBufferRestorePosition (
@retval EFI_INVALID_PARAMETER Str is not a valid filename. @retval EFI_INVALID_PARAMETER Str is not a valid filename.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferSetFileName ( FileBufferSetFileName (
IN CONST CHAR16 *Str IN CONST CHAR16 *Str
); );
@ -127,7 +120,6 @@ FileBufferSetFileName (
@retval EFI_INVALID_PARAMETER FileName is a directory. @retval EFI_INVALID_PARAMETER FileName is a directory.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferRead ( FileBufferRead (
IN CONST CHAR16 *FileName, IN CONST CHAR16 *FileName,
IN CONST BOOLEAN Recover IN CONST BOOLEAN Recover
@ -143,7 +135,6 @@ FileBufferRead (
@retval EFI_OUT_OF_RESOURCES There were not enough resources to write the file. @retval EFI_OUT_OF_RESOURCES There were not enough resources to write the file.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferSave ( FileBufferSave (
CONST CHAR16 *FileName CONST CHAR16 *FileName
); );
@ -155,7 +146,6 @@ FileBufferSave (
@param[in] NewFilePosCol The column of file position ( start from 1 ). @param[in] NewFilePosCol The column of file position ( start from 1 ).
**/ **/
VOID VOID
EFIAPI
FileBufferMovePosition ( FileBufferMovePosition (
IN CONST UINTN NewFilePosRow, IN CONST UINTN NewFilePosRow,
IN CONST UINTN NewFilePosCol IN CONST UINTN NewFilePosCol
@ -172,7 +162,6 @@ FileBufferMovePosition (
@retval EFI_OUT_OF_RESOURCES A memory allocation failed. @retval EFI_OUT_OF_RESOURCES A memory allocation failed.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferCutLine ( FileBufferCutLine (
OUT EFI_EDITOR_LINE **CutLine OUT EFI_EDITOR_LINE **CutLine
); );
@ -184,7 +173,6 @@ FileBufferCutLine (
@retval EFI_OUT_OF_RESOURCES A memory allocation failed. @retval EFI_OUT_OF_RESOURCES A memory allocation failed.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferPasteLine ( FileBufferPasteLine (
VOID VOID
); );
@ -199,7 +187,6 @@ FileBufferPasteLine (
@retval EFI_NOT_FOUND The string Str was not found. @retval EFI_NOT_FOUND The string Str was not found.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferSearch ( FileBufferSearch (
IN CONST CHAR16 *Str, IN CONST CHAR16 *Str,
IN CONST UINTN Offset IN CONST UINTN Offset
@ -217,7 +204,6 @@ FileBufferSearch (
@retval EFI_OUT_OF_RESOURCES A memory allocation failed. @retval EFI_OUT_OF_RESOURCES A memory allocation failed.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferReplace ( FileBufferReplace (
IN CONST CHAR16 *Replace, IN CONST CHAR16 *Replace,
IN CONST UINTN SearchLen IN CONST UINTN SearchLen
@ -231,7 +217,6 @@ FileBufferReplace (
@param[in] Offset The column to start at. @param[in] Offset The column to start at.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
FileBufferReplaceAll ( FileBufferReplaceAll (
IN CHAR16 *SearchStr, IN CHAR16 *SearchStr,
IN CHAR16 *ReplaceStr, IN CHAR16 *ReplaceStr,
@ -245,7 +230,6 @@ FileBufferReplaceAll (
@param[in] TextY The new y-coordinate. @param[in] TextY The new y-coordinate.
**/ **/
VOID VOID
EFIAPI
FileBufferAdjustMousePosition ( FileBufferAdjustMousePosition (
IN CONST INT32 TextX, IN CONST INT32 TextX,
IN CONST INT32 TextY IN CONST INT32 TextY
@ -255,7 +239,6 @@ FileBufferAdjustMousePosition (
Set the modified state to TRUE. Set the modified state to TRUE.
**/ **/
VOID VOID
EFIAPI
FileBufferSetModified ( FileBufferSetModified (
VOID VOID
); );

View File

@ -1418,7 +1418,6 @@ EFI_EDITOR_GLOBAL_EDITOR MainEditorConst = {
@retval EFI_LOAD_ERROR A load error occured. @retval EFI_LOAD_ERROR A load error occured.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
MainEditorInit ( MainEditorInit (
VOID VOID
) )
@ -1552,7 +1551,6 @@ MainEditorInit (
@retval EFI_LOAD_ERROR A load error occured. @retval EFI_LOAD_ERROR A load error occured.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
MainEditorCleanup ( MainEditorCleanup (
VOID VOID
) )
@ -1596,7 +1594,6 @@ MainEditorCleanup (
Refresh the main editor component. Refresh the main editor component.
**/ **/
VOID VOID
EFIAPI
MainEditorRefresh ( MainEditorRefresh (
VOID VOID
) )
@ -1649,7 +1646,6 @@ MainEditorRefresh (
@return The X location of the mouse. @return The X location of the mouse.
**/ **/
INT32 INT32
EFIAPI
GetTextX ( GetTextX (
IN INT32 GuidX IN INT32 GuidX
) )
@ -1671,7 +1667,6 @@ GetTextX (
@return The Y location of the mouse. @return The Y location of the mouse.
**/ **/
INT32 INT32
EFIAPI
GetTextY ( GetTextY (
IN INT32 GuidY IN INT32 GuidY
) )
@ -1695,7 +1690,6 @@ GetTextY (
@retval EFI_NOT_FOUND There was no mouse support found. @retval EFI_NOT_FOUND There was no mouse support found.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
MainEditorHandleMouseInput ( MainEditorHandleMouseInput (
IN EFI_SIMPLE_POINTER_STATE MouseState IN EFI_SIMPLE_POINTER_STATE MouseState
) )
@ -1796,7 +1790,6 @@ MainEditorHandleMouseInput (
@retval EFI_OUT_OF_RESOURCES A memory allocation failed. @retval EFI_OUT_OF_RESOURCES A memory allocation failed.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
MainEditorKeyInput ( MainEditorKeyInput (
VOID VOID
) )
@ -1893,7 +1886,6 @@ MainEditorKeyInput (
@retval EFI_OUT_OF_RESOURCES A memory allocation failed. @retval EFI_OUT_OF_RESOURCES A memory allocation failed.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
MainEditorSetCutLine ( MainEditorSetCutLine (
EFI_EDITOR_LINE *Line EFI_EDITOR_LINE *Line
) )
@ -1925,7 +1917,6 @@ MainEditorSetCutLine (
@retval EFI_SUCCESS The operation was successful. @retval EFI_SUCCESS The operation was successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
MainEditorBackup ( MainEditorBackup (
VOID VOID
) )

View File

@ -24,7 +24,6 @@
@retval EFI_LOAD_ERROR A load error occured. @retval EFI_LOAD_ERROR A load error occured.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
MainEditorInit ( MainEditorInit (
VOID VOID
); );
@ -36,7 +35,6 @@ MainEditorInit (
@retval EFI_LOAD_ERROR A load error occured. @retval EFI_LOAD_ERROR A load error occured.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
MainEditorCleanup ( MainEditorCleanup (
VOID VOID
); );
@ -45,7 +43,6 @@ MainEditorCleanup (
Refresh the main editor component. Refresh the main editor component.
**/ **/
VOID VOID
EFIAPI
MainEditorRefresh ( MainEditorRefresh (
VOID VOID
); );
@ -58,7 +55,6 @@ MainEditorRefresh (
@retval EFI_OUT_OF_RESOURCES A memory allocation failed. @retval EFI_OUT_OF_RESOURCES A memory allocation failed.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
MainEditorKeyInput ( MainEditorKeyInput (
VOID VOID
); );
@ -69,7 +65,6 @@ MainEditorKeyInput (
@retval EFI_SUCCESS The operation was successful. @retval EFI_SUCCESS The operation was successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
MainEditorBackup ( MainEditorBackup (
VOID VOID
); );

View File

@ -24,7 +24,6 @@
@return a pointer to the newly allcoated line. @return a pointer to the newly allcoated line.
**/ **/
EFI_EDITOR_LINE * EFI_EDITOR_LINE *
EFIAPI
LineDup ( LineDup (
IN EFI_EDITOR_LINE *Src IN EFI_EDITOR_LINE *Src
) )
@ -65,7 +64,6 @@ LineDup (
@param Src The line structure to free. @param Src The line structure to free.
**/ **/
VOID VOID
EFIAPI
LineFree ( LineFree (
IN EFI_EDITOR_LINE *Src IN EFI_EDITOR_LINE *Src
) )

View File

@ -25,7 +25,6 @@
@param Src The line structure to free. @param Src The line structure to free.
**/ **/
VOID VOID
EFIAPI
LineFree ( LineFree (
IN EFI_EDITOR_LINE *Src IN EFI_EDITOR_LINE *Src
); );
@ -39,7 +38,6 @@ LineFree (
@return a pointer to the newly allcoated line. @return a pointer to the newly allcoated line.
**/ **/
EFI_EDITOR_LINE * EFI_EDITOR_LINE *
EFIAPI
LineDup ( LineDup (
IN EFI_EDITOR_LINE *Src IN EFI_EDITOR_LINE *Src
); );

View File

@ -23,7 +23,6 @@ UINTN StringSize; // Size of mReturnString space size.
Initialize the input bar. Initialize the input bar.
**/ **/
VOID VOID
EFIAPI
InputBarInit ( InputBarInit (
VOID VOID
) )
@ -37,7 +36,6 @@ InputBarInit (
Cleanup function for input bar. Cleanup function for input bar.
**/ **/
VOID VOID
EFIAPI
InputBarCleanup ( InputBarCleanup (
VOID VOID
) )
@ -59,7 +57,6 @@ InputBarCleanup (
@param[in] LastRow The last printable row. @param[in] LastRow The last printable row.
**/ **/
VOID VOID
EFIAPI
InputBarPrintInput ( InputBarPrintInput (
IN UINTN LastColumn, IN UINTN LastColumn,
IN UINTN LastRow IN UINTN LastRow
@ -121,7 +118,6 @@ typedef union {
@retval EFI_SUCCESS The operation was successful. @retval EFI_SUCCESS The operation was successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
InputBarRefresh ( InputBarRefresh (
UINTN LastRow, UINTN LastRow,
UINTN LastColumn UINTN LastColumn
@ -261,7 +257,6 @@ InputBarRefresh (
@retval EFI_OUT_OF_RESOURCES A memory allocation failed. @retval EFI_OUT_OF_RESOURCES A memory allocation failed.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
InputBarSetPrompt ( InputBarSetPrompt (
IN CONST CHAR16 *Str IN CONST CHAR16 *Str
) )
@ -288,7 +283,6 @@ InputBarSetPrompt (
@retval EFI_OUT_OF_RESOURCES A memory allocation failed. @retval EFI_OUT_OF_RESOURCES A memory allocation failed.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
InputBarSetStringSize ( InputBarSetStringSize (
UINTN Size UINTN Size
) )
@ -314,7 +308,6 @@ InputBarSetStringSize (
@return The string that was input. @return The string that was input.
**/ **/
CONST CHAR16* CONST CHAR16*
EFIAPI
InputBarGetString ( InputBarGetString (
VOID VOID
) )

View File

@ -19,7 +19,6 @@
Initialize the input bar. Initialize the input bar.
**/ **/
VOID VOID
EFIAPI
InputBarInit ( InputBarInit (
VOID VOID
); );
@ -28,7 +27,6 @@ InputBarInit (
Cleanup function for input bar. Cleanup function for input bar.
**/ **/
VOID VOID
EFIAPI
InputBarCleanup ( InputBarCleanup (
VOID VOID
); );
@ -42,7 +40,6 @@ InputBarCleanup (
@retval EFI_SUCCESS The operation was successful. @retval EFI_SUCCESS The operation was successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
InputBarRefresh ( InputBarRefresh (
UINTN LastRow, UINTN LastRow,
UINTN LastColumn UINTN LastColumn
@ -57,7 +54,6 @@ InputBarRefresh (
@retval EFI_OUT_OF_RESOURCES A memory allocation failed. @retval EFI_OUT_OF_RESOURCES A memory allocation failed.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
InputBarSetPrompt ( InputBarSetPrompt (
IN CONST CHAR16 *Str IN CONST CHAR16 *Str
); );
@ -71,7 +67,6 @@ InputBarSetPrompt (
@retval EFI_OUT_OF_RESOURCES A memory allocation failed. @retval EFI_OUT_OF_RESOURCES A memory allocation failed.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
InputBarSetStringSize ( InputBarSetStringSize (
UINTN Size UINTN Size
); );
@ -83,7 +78,6 @@ InputBarSetStringSize (
@return The string that was input. @return The string that was input.
**/ **/
CONST CHAR16* CONST CHAR16*
EFIAPI
InputBarGetString ( InputBarGetString (
VOID VOID
); );

View File

@ -24,7 +24,6 @@ UINTN NumItems;
Cleanup function for a menu bar. frees all allocated memory. Cleanup function for a menu bar. frees all allocated memory.
**/ **/
VOID VOID
EFIAPI
MenuBarCleanup ( MenuBarCleanup (
VOID VOID
) )
@ -41,7 +40,6 @@ MenuBarCleanup (
@retval EFI_OUT_OF_RESOURCES A memory allocation failed. @retval EFI_OUT_OF_RESOURCES A memory allocation failed.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
MenuBarInit ( MenuBarInit (
IN CONST EDITOR_MENU_ITEM *Items IN CONST EDITOR_MENU_ITEM *Items
) )
@ -66,7 +64,6 @@ MenuBarInit (
@retval EFI_SUCCESS The initialization was correct. @retval EFI_SUCCESS The initialization was correct.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
ControlHotKeyInit ( ControlHotKeyInit (
IN MENU_ITEM_FUNCTION *Items IN MENU_ITEM_FUNCTION *Items
) )
@ -83,7 +80,6 @@ ControlHotKeyInit (
@retval EFI_SUCCESS The refresh was successful. @retval EFI_SUCCESS The refresh was successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
MenuBarRefresh ( MenuBarRefresh (
IN CONST UINTN LastRow, IN CONST UINTN LastRow,
IN CONST UINTN LastCol IN CONST UINTN LastCol
@ -147,7 +143,6 @@ MenuBarRefresh (
@return The return value from the called dispatch function. @return The return value from the called dispatch function.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
MenuBarDispatchFunctionKey ( MenuBarDispatchFunctionKey (
IN CONST EFI_INPUT_KEY *Key IN CONST EFI_INPUT_KEY *Key
) )
@ -177,7 +172,6 @@ MenuBarDispatchFunctionKey (
@return EFI_SUCCESS. @return EFI_SUCCESS.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
MenuBarDispatchControlHotKey ( MenuBarDispatchControlHotKey (
IN CONST EFI_INPUT_KEY *Key IN CONST EFI_INPUT_KEY *Key
) )

View File

@ -50,7 +50,6 @@ typedef struct _EDITOR_MENU_ITEM {
@retval EFI_OUT_OF_RESOURCES A memory allocation failed. @retval EFI_OUT_OF_RESOURCES A memory allocation failed.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
MenuBarInit ( MenuBarInit (
IN CONST EDITOR_MENU_ITEM *Items IN CONST EDITOR_MENU_ITEM *Items
); );
@ -63,7 +62,6 @@ MenuBarInit (
@retval EFI_SUCCESS The initialization was correct. @retval EFI_SUCCESS The initialization was correct.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
ControlHotKeyInit ( ControlHotKeyInit (
IN MENU_ITEM_FUNCTION *Items IN MENU_ITEM_FUNCTION *Items
); );
@ -72,7 +70,6 @@ ControlHotKeyInit (
Cleanup function for a menu bar. frees all allocated memory. Cleanup function for a menu bar. frees all allocated memory.
**/ **/
VOID VOID
EFIAPI
MenuBarCleanup ( MenuBarCleanup (
VOID VOID
); );
@ -86,7 +83,6 @@ MenuBarCleanup (
@retval EFI_SUCCESS The refresh was successful. @retval EFI_SUCCESS The refresh was successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
MenuBarRefresh ( MenuBarRefresh (
IN CONST UINTN LastRow, IN CONST UINTN LastRow,
IN CONST UINTN LastCol IN CONST UINTN LastCol
@ -102,7 +98,6 @@ MenuBarRefresh (
@return The return value from the called dispatch function. @return The return value from the called dispatch function.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
MenuBarDispatchFunctionKey ( MenuBarDispatchFunctionKey (
IN CONST EFI_INPUT_KEY *Key IN CONST EFI_INPUT_KEY *Key
); );
@ -117,7 +112,6 @@ MenuBarDispatchFunctionKey (
@return EFI_SUCCESS. @return EFI_SUCCESS.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
MenuBarDispatchControlHotKey ( MenuBarDispatchControlHotKey (
IN CONST EFI_INPUT_KEY *Key IN CONST EFI_INPUT_KEY *Key
); );

View File

@ -27,7 +27,6 @@ BOOLEAN StatusStringChanged;
@sa StatusBarSetStatusString @sa StatusBarSetStatusString
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
StatusBarInit ( StatusBarInit (
VOID VOID
) )
@ -49,7 +48,6 @@ StatusBarInit (
Cleanup function for the status bar. Cleanup function for the status bar.
**/ **/
VOID VOID
EFIAPI
StatusBarCleanup ( StatusBarCleanup (
VOID VOID
) )
@ -84,7 +82,6 @@ typedef union {
@retval EFI_SUCCESS The operation was successful. @retval EFI_SUCCESS The operation was successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
StatusBarRefresh ( StatusBarRefresh (
IN BOOLEAN EditorFirst, IN BOOLEAN EditorFirst,
IN UINTN LastRow, IN UINTN LastRow,
@ -177,7 +174,6 @@ StatusBarRefresh (
@retval EFI_OUT_OF_RESOURCES A memory allocation failed. @retval EFI_OUT_OF_RESOURCES A memory allocation failed.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
StatusBarSetStatusString ( StatusBarSetStatusString (
IN CHAR16 *Str IN CHAR16 *Str
) )
@ -202,7 +198,6 @@ StatusBarSetStatusString (
@return The string that is used. @return The string that is used.
**/ **/
CONST CHAR16* CONST CHAR16*
EFIAPI
StatusBarGetString ( StatusBarGetString (
VOID VOID
) )
@ -214,7 +209,6 @@ StatusBarGetString (
Function to set the need refresh boolean to TRUE. Function to set the need refresh boolean to TRUE.
**/ **/
VOID VOID
EFIAPI
StatusBarSetRefresh( StatusBarSetRefresh(
VOID VOID
) )
@ -228,7 +222,6 @@ StatusBarSetRefresh(
@retval TRUE The status bar needs to be refreshed. @retval TRUE The status bar needs to be refreshed.
**/ **/
BOOLEAN BOOLEAN
EFIAPI
StatusBarGetRefresh( StatusBarGetRefresh(
VOID VOID
) )

View File

@ -23,7 +23,6 @@
@sa StatusBarSetStatusString @sa StatusBarSetStatusString
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
StatusBarInit ( StatusBarInit (
VOID VOID
); );
@ -32,7 +31,6 @@ StatusBarInit (
Cleanup function for the status bar. Cleanup function for the status bar.
**/ **/
VOID VOID
EFIAPI
StatusBarCleanup ( StatusBarCleanup (
VOID VOID
); );
@ -51,7 +49,6 @@ StatusBarCleanup (
@retval EFI_SUCCESS The operation was successful. @retval EFI_SUCCESS The operation was successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
StatusBarRefresh ( StatusBarRefresh (
IN BOOLEAN EditorFirst, IN BOOLEAN EditorFirst,
IN UINTN LastRow, IN UINTN LastRow,
@ -70,7 +67,6 @@ StatusBarRefresh (
@retval EFI_OUT_OF_RESOURCES A memory allocation failed. @retval EFI_OUT_OF_RESOURCES A memory allocation failed.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
StatusBarSetStatusString ( StatusBarSetStatusString (
IN CHAR16 *Str IN CHAR16 *Str
); );
@ -81,7 +77,6 @@ StatusBarSetStatusString (
@return The string that is used. @return The string that is used.
**/ **/
CONST CHAR16* CONST CHAR16*
EFIAPI
StatusBarGetString ( StatusBarGetString (
VOID VOID
); );
@ -90,7 +85,6 @@ StatusBarGetString (
Function to set the need refresh boolean to TRUE. Function to set the need refresh boolean to TRUE.
**/ **/
VOID VOID
EFIAPI
StatusBarSetRefresh( StatusBarSetRefresh(
VOID VOID
); );
@ -101,7 +95,6 @@ StatusBarSetRefresh(
@retval TRUE The status bar needs to be refreshed. @retval TRUE The status bar needs to be refreshed.
**/ **/
BOOLEAN BOOLEAN
EFIAPI
StatusBarGetRefresh( StatusBarGetRefresh(
VOID VOID
); );

View File

@ -27,7 +27,6 @@ CHAR16 *Title = NULL;
@retval EFI_OUT_OF_RESOURCES A memory allocation failed. @retval EFI_OUT_OF_RESOURCES A memory allocation failed.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
MainTitleBarInit ( MainTitleBarInit (
CONST CHAR16 *Prompt CONST CHAR16 *Prompt
) )
@ -52,7 +51,6 @@ MainTitleBarInit (
Clean up the memory used. Clean up the memory used.
**/ **/
VOID VOID
EFIAPI
MainTitleBarCleanup ( MainTitleBarCleanup (
VOID VOID
) )
@ -86,7 +84,6 @@ typedef union {
@retval EFI_SUCCESS The operation was successful. @retval EFI_SUCCESS The operation was successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
MainTitleBarRefresh ( MainTitleBarRefresh (
IN CONST CHAR16 *FileName OPTIONAL, IN CONST CHAR16 *FileName OPTIONAL,
IN CONST EDIT_FILE_TYPE FileType, IN CONST EDIT_FILE_TYPE FileType,

View File

@ -24,7 +24,6 @@
@retval EFI_OUT_OF_RESOURCES A memory allocation failed. @retval EFI_OUT_OF_RESOURCES A memory allocation failed.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
MainTitleBarInit ( MainTitleBarInit (
CONST CHAR16 *Prompt CONST CHAR16 *Prompt
); );
@ -33,7 +32,6 @@ MainTitleBarInit (
Clean up the memory used. Clean up the memory used.
**/ **/
VOID VOID
EFIAPI
MainTitleBarCleanup ( MainTitleBarCleanup (
VOID VOID
); );
@ -62,7 +60,6 @@ typedef enum {
@retval EFI_SUCCESS The operation was successful. @retval EFI_SUCCESS The operation was successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
MainTitleBarRefresh ( MainTitleBarRefresh (
IN CONST CHAR16 *FileName OPTIONAL, IN CONST CHAR16 *FileName OPTIONAL,
IN CONST EDIT_FILE_TYPE FileType, IN CONST EDIT_FILE_TYPE FileType,

View File

@ -906,7 +906,6 @@ HBufferImageRefresh (
@return EFI_SUCCESS The operation was successful. @return EFI_SUCCESS The operation was successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
HBufferImageRead ( HBufferImageRead (
IN CONST CHAR16 *FileName, IN CONST CHAR16 *FileName,
IN CONST CHAR16 *DiskName, IN CONST CHAR16 *DiskName,
@ -1101,7 +1100,6 @@ HBufferImageFree (
@retval -1 The operation failed. @retval -1 The operation failed.
**/ **/
INTN INTN
EFIAPI
HBufferImageCharToHex ( HBufferImageCharToHex (
IN CHAR16 Char IN CHAR16 Char
) )
@ -1133,7 +1131,6 @@ HBufferImageCharToHex (
@retval EFI_OUT_OF_RESOURCES A memory allocation failed. @retval EFI_OUT_OF_RESOURCES A memory allocation failed.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
HBufferImageAddChar ( HBufferImageAddChar (
IN CHAR16 Char IN CHAR16 Char
) )
@ -1264,7 +1261,6 @@ HBufferImageAddChar (
@retval EFI_SUCCESS The operationw as successful. @retval EFI_SUCCESS The operationw as successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
HBufferImageDoBackspace ( HBufferImageDoBackspace (
VOID VOID
) )
@ -1328,7 +1324,6 @@ HBufferImageDoBackspace (
@retval EFI_OUT_OF_RESOURCES A memory allocation failed. @retval EFI_OUT_OF_RESOURCES A memory allocation failed.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
HBufferImageDoCharInput ( HBufferImageDoCharInput (
IN CHAR16 Char IN CHAR16 Char
) )
@ -2119,7 +2114,6 @@ HBufferImageAddCharacterToBuffer (
@retval EFI_SUCCESS The operationw as successful. @retval EFI_SUCCESS The operationw as successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
HBufferImageDoDelete ( HBufferImageDoDelete (
VOID VOID
) )
@ -2180,7 +2174,6 @@ HBufferImageDoDelete (
@retval EFI_OUT_OF_RESOURCES A memory allocation failed. @retval EFI_OUT_OF_RESOURCES A memory allocation failed.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
HBufferImageBufferToList ( HBufferImageBufferToList (
IN VOID *Buffer, IN VOID *Buffer,
IN UINTN Bytes IN UINTN Bytes
@ -2245,7 +2238,6 @@ HBufferImageBufferToList (
@retval EFI_SUCCESS The operation was successful. @retval EFI_SUCCESS The operation was successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
HBufferImageListToBuffer ( HBufferImageListToBuffer (
IN VOID *Buffer, IN VOID *Buffer,
IN UINTN Bytes IN UINTN Bytes
@ -2300,7 +2292,6 @@ HBufferImageListToBuffer (
@param[in] TextY The y-coordinate. @param[in] TextY The y-coordinate.
**/ **/
VOID VOID
EFIAPI
HBufferImageAdjustMousePosition ( HBufferImageAdjustMousePosition (
IN INT32 TextX, IN INT32 TextX,
IN INT32 TextY IN INT32 TextY

View File

@ -97,7 +97,6 @@ HBufferImageBackup (
@return EFI_SUCCESS The operation was successful. @return EFI_SUCCESS The operation was successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
HBufferImageRead ( HBufferImageRead (
IN CONST CHAR16 *FileName, IN CONST CHAR16 *FileName,
IN CONST CHAR16 *DiskName, IN CONST CHAR16 *DiskName,
@ -215,7 +214,6 @@ HBufferImageAddCharacterToBuffer (
@retval EFI_OUT_OF_RESOURCES A memory allocation failed. @retval EFI_OUT_OF_RESOURCES A memory allocation failed.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
HBufferImageBufferToList ( HBufferImageBufferToList (
IN VOID *Buffer, IN VOID *Buffer,
IN UINTN Bytes IN UINTN Bytes
@ -230,7 +228,6 @@ HBufferImageBufferToList (
@retval EFI_SUCCESS The operation was successful. @retval EFI_SUCCESS The operation was successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
HBufferImageListToBuffer ( HBufferImageListToBuffer (
IN VOID *Buffer, IN VOID *Buffer,
IN UINTN Bytes IN UINTN Bytes
@ -243,7 +240,6 @@ HBufferImageListToBuffer (
@param[in] TextY The y-coordinate. @param[in] TextY The y-coordinate.
**/ **/
VOID VOID
EFIAPI
HBufferImageAdjustMousePosition ( HBufferImageAdjustMousePosition (
IN INT32 TextX, IN INT32 TextX,
IN INT32 TextY IN INT32 TextY

View File

@ -114,7 +114,6 @@ HDiskImageCleanup (
@retval EFI_OUT_OF_RESOURCES A memory allocation failed. @retval EFI_OUT_OF_RESOURCES A memory allocation failed.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
HDiskImageSetDiskNameOffsetSize ( HDiskImageSetDiskNameOffsetSize (
IN CONST CHAR16 *Str, IN CONST CHAR16 *Str,
IN UINTN Offset, IN UINTN Offset,

View File

@ -2307,7 +2307,6 @@ HMainEditorKeyInput (
Backup function for MainEditor. Backup function for MainEditor.
**/ **/
VOID VOID
EFIAPI
HMainEditorBackup ( HMainEditorBackup (
VOID VOID
) )

View File

@ -68,7 +68,6 @@ HMainEditorKeyInput (
Backup function for MainEditor. Backup function for MainEditor.
**/ **/
VOID VOID
EFIAPI
HMainEditorBackup ( HMainEditorBackup (
VOID VOID
); );

View File

@ -44,7 +44,6 @@ LoadPciRomConnectAllDriversToAllControllers (
@retval Other value Unknown error. @retval Other value Unknown error.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
LoadEfiDriversFromRomImage ( LoadEfiDriversFromRomImage (
VOID *RomBar, VOID *RomBar,
UINTN RomSize, UINTN RomSize,
@ -198,7 +197,6 @@ ShellCommandRunLoadPciRom (
@retval Other value Unknown error. @retval Other value Unknown error.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
LoadEfiDriversFromRomImage ( LoadEfiDriversFromRomImage (
VOID *RomBar, VOID *RomBar,
UINTN RomSize, UINTN RomSize,

View File

@ -69,7 +69,6 @@ CONST EFI_CPU_IO_PROTOCOL_WIDTH mShellMmCpuIoWidth[] = {
@param[out] Register PCI register offset. @param[out] Register PCI register offset.
**/ **/
VOID VOID
EFIAPI
ShellMmDecodePciAddress ( ShellMmDecodePciAddress (
IN BOOLEAN PciFormat, IN BOOLEAN PciFormat,
IN UINT64 Address, IN UINT64 Address,

View File

@ -5032,7 +5032,6 @@ ExplainPcieRootStatus (
@param[in] HeadersBaseAddress The address of all the extended capability headers. @param[in] HeadersBaseAddress The address of all the extended capability headers.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
PrintInterpretedExtendedCompatibilityLinkControl ( PrintInterpretedExtendedCompatibilityLinkControl (
IN CONST PCI_EXP_EXT_HDR *HeaderAddress, IN CONST PCI_EXP_EXT_HDR *HeaderAddress,
IN CONST PCI_EXP_EXT_HDR *HeadersBaseAddress IN CONST PCI_EXP_EXT_HDR *HeadersBaseAddress
@ -5065,7 +5064,6 @@ PrintInterpretedExtendedCompatibilityLinkControl (
@param[in] HeadersBaseAddress The address of all the extended capability headers. @param[in] HeadersBaseAddress The address of all the extended capability headers.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
PrintInterpretedExtendedCompatibilityPowerBudgeting ( PrintInterpretedExtendedCompatibilityPowerBudgeting (
IN CONST PCI_EXP_EXT_HDR *HeaderAddress, IN CONST PCI_EXP_EXT_HDR *HeaderAddress,
IN CONST PCI_EXP_EXT_HDR *HeadersBaseAddress IN CONST PCI_EXP_EXT_HDR *HeadersBaseAddress
@ -5098,7 +5096,6 @@ PrintInterpretedExtendedCompatibilityPowerBudgeting (
@param[in] HeadersBaseAddress The address of all the extended capability headers. @param[in] HeadersBaseAddress The address of all the extended capability headers.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
PrintInterpretedExtendedCompatibilityAcs ( PrintInterpretedExtendedCompatibilityAcs (
IN CONST PCI_EXP_EXT_HDR *HeaderAddress, IN CONST PCI_EXP_EXT_HDR *HeaderAddress,
IN CONST PCI_EXP_EXT_HDR *HeadersBaseAddress IN CONST PCI_EXP_EXT_HDR *HeadersBaseAddress
@ -5149,7 +5146,6 @@ PrintInterpretedExtendedCompatibilityAcs (
@param[in] HeadersBaseAddress The address of all the extended capability headers. @param[in] HeadersBaseAddress The address of all the extended capability headers.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
PrintInterpretedExtendedCompatibilityLatencyToleranceReporting ( PrintInterpretedExtendedCompatibilityLatencyToleranceReporting (
IN CONST PCI_EXP_EXT_HDR *HeaderAddress, IN CONST PCI_EXP_EXT_HDR *HeaderAddress,
IN CONST PCI_EXP_EXT_HDR *HeadersBaseAddress IN CONST PCI_EXP_EXT_HDR *HeadersBaseAddress
@ -5181,7 +5177,6 @@ PrintInterpretedExtendedCompatibilityLatencyToleranceReporting (
@param[in] HeadersBaseAddress The address of all the extended capability headers. @param[in] HeadersBaseAddress The address of all the extended capability headers.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
PrintInterpretedExtendedCompatibilitySerialNumber ( PrintInterpretedExtendedCompatibilitySerialNumber (
IN CONST PCI_EXP_EXT_HDR *HeaderAddress, IN CONST PCI_EXP_EXT_HDR *HeaderAddress,
IN CONST PCI_EXP_EXT_HDR *HeadersBaseAddress IN CONST PCI_EXP_EXT_HDR *HeadersBaseAddress
@ -5212,7 +5207,6 @@ PrintInterpretedExtendedCompatibilitySerialNumber (
@param[in] HeadersBaseAddress The address of all the extended capability headers. @param[in] HeadersBaseAddress The address of all the extended capability headers.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
PrintInterpretedExtendedCompatibilityRcrb ( PrintInterpretedExtendedCompatibilityRcrb (
IN CONST PCI_EXP_EXT_HDR *HeaderAddress, IN CONST PCI_EXP_EXT_HDR *HeaderAddress,
IN CONST PCI_EXP_EXT_HDR *HeadersBaseAddress IN CONST PCI_EXP_EXT_HDR *HeadersBaseAddress
@ -5246,7 +5240,6 @@ PrintInterpretedExtendedCompatibilityRcrb (
@param[in] HeadersBaseAddress The address of all the extended capability headers. @param[in] HeadersBaseAddress The address of all the extended capability headers.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
PrintInterpretedExtendedCompatibilityVendorSpecific ( PrintInterpretedExtendedCompatibilityVendorSpecific (
IN CONST PCI_EXP_EXT_HDR *HeaderAddress, IN CONST PCI_EXP_EXT_HDR *HeaderAddress,
IN CONST PCI_EXP_EXT_HDR *HeadersBaseAddress IN CONST PCI_EXP_EXT_HDR *HeadersBaseAddress
@ -5277,7 +5270,6 @@ PrintInterpretedExtendedCompatibilityVendorSpecific (
@param[in] HeadersBaseAddress The address of all the extended capability headers. @param[in] HeadersBaseAddress The address of all the extended capability headers.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
PrintInterpretedExtendedCompatibilityECEA ( PrintInterpretedExtendedCompatibilityECEA (
IN CONST PCI_EXP_EXT_HDR *HeaderAddress, IN CONST PCI_EXP_EXT_HDR *HeaderAddress,
IN CONST PCI_EXP_EXT_HDR *HeadersBaseAddress IN CONST PCI_EXP_EXT_HDR *HeadersBaseAddress
@ -5308,7 +5300,6 @@ PrintInterpretedExtendedCompatibilityECEA (
@param[in] HeadersBaseAddress The address of all the extended capability headers. @param[in] HeadersBaseAddress The address of all the extended capability headers.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
PrintInterpretedExtendedCompatibilityAri ( PrintInterpretedExtendedCompatibilityAri (
IN CONST PCI_EXP_EXT_HDR *HeaderAddress, IN CONST PCI_EXP_EXT_HDR *HeaderAddress,
IN CONST PCI_EXP_EXT_HDR *HeadersBaseAddress IN CONST PCI_EXP_EXT_HDR *HeadersBaseAddress
@ -5340,7 +5331,6 @@ PrintInterpretedExtendedCompatibilityAri (
@param[in] HeadersBaseAddress The address of all the extended capability headers. @param[in] HeadersBaseAddress The address of all the extended capability headers.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
PrintInterpretedExtendedCompatibilityDynamicPowerAllocation ( PrintInterpretedExtendedCompatibilityDynamicPowerAllocation (
IN CONST PCI_EXP_EXT_HDR *HeaderAddress, IN CONST PCI_EXP_EXT_HDR *HeaderAddress,
IN CONST PCI_EXP_EXT_HDR *HeadersBaseAddress IN CONST PCI_EXP_EXT_HDR *HeadersBaseAddress
@ -5384,7 +5374,6 @@ PrintInterpretedExtendedCompatibilityDynamicPowerAllocation (
@param[in] HeadersBaseAddress The address of all the extended capability headers. @param[in] HeadersBaseAddress The address of all the extended capability headers.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
PrintInterpretedExtendedCompatibilityLinkDeclaration ( PrintInterpretedExtendedCompatibilityLinkDeclaration (
IN CONST PCI_EXP_EXT_HDR *HeaderAddress, IN CONST PCI_EXP_EXT_HDR *HeaderAddress,
IN CONST PCI_EXP_EXT_HDR *HeadersBaseAddress IN CONST PCI_EXP_EXT_HDR *HeadersBaseAddress
@ -5426,7 +5415,6 @@ PrintInterpretedExtendedCompatibilityLinkDeclaration (
@param[in] HeadersBaseAddress The address of all the extended capability headers. @param[in] HeadersBaseAddress The address of all the extended capability headers.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
PrintInterpretedExtendedCompatibilityAer ( PrintInterpretedExtendedCompatibilityAer (
IN CONST PCI_EXP_EXT_HDR *HeaderAddress, IN CONST PCI_EXP_EXT_HDR *HeaderAddress,
IN CONST PCI_EXP_EXT_HDR *HeadersBaseAddress IN CONST PCI_EXP_EXT_HDR *HeadersBaseAddress
@ -5475,7 +5463,6 @@ PrintInterpretedExtendedCompatibilityAer (
@param[in] PciExpressCapPtr The address of the PCIe capabilities structure. @param[in] PciExpressCapPtr The address of the PCIe capabilities structure.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
PrintInterpretedExtendedCompatibilityMulticast ( PrintInterpretedExtendedCompatibilityMulticast (
IN CONST PCI_EXP_EXT_HDR *HeaderAddress, IN CONST PCI_EXP_EXT_HDR *HeaderAddress,
IN CONST PCI_EXP_EXT_HDR *HeadersBaseAddress, IN CONST PCI_EXP_EXT_HDR *HeadersBaseAddress,
@ -5515,7 +5502,6 @@ PrintInterpretedExtendedCompatibilityMulticast (
@param[in] HeadersBaseAddress The address of all the extended capability headers. @param[in] HeadersBaseAddress The address of all the extended capability headers.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
PrintInterpretedExtendedCompatibilityVirtualChannel ( PrintInterpretedExtendedCompatibilityVirtualChannel (
IN CONST PCI_EXP_EXT_HDR *HeaderAddress, IN CONST PCI_EXP_EXT_HDR *HeaderAddress,
IN CONST PCI_EXP_EXT_HDR *HeadersBaseAddress IN CONST PCI_EXP_EXT_HDR *HeadersBaseAddress
@ -5568,7 +5554,6 @@ PrintInterpretedExtendedCompatibilityVirtualChannel (
@param[in] HeadersBaseAddress The address of all the extended capability headers. @param[in] HeadersBaseAddress The address of all the extended capability headers.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
PrintInterpretedExtendedCompatibilityResizeableBar ( PrintInterpretedExtendedCompatibilityResizeableBar (
IN CONST PCI_EXP_EXT_HDR *HeaderAddress, IN CONST PCI_EXP_EXT_HDR *HeaderAddress,
IN CONST PCI_EXP_EXT_HDR *HeadersBaseAddress IN CONST PCI_EXP_EXT_HDR *HeadersBaseAddress
@ -5606,7 +5591,6 @@ PrintInterpretedExtendedCompatibilityResizeableBar (
@param[in] HeadersBaseAddress The address of all the extended capability headers. @param[in] HeadersBaseAddress The address of all the extended capability headers.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
PrintInterpretedExtendedCompatibilityTph ( PrintInterpretedExtendedCompatibilityTph (
IN CONST PCI_EXP_EXT_HDR *HeaderAddress, IN CONST PCI_EXP_EXT_HDR *HeaderAddress,
IN CONST PCI_EXP_EXT_HDR *HeadersBaseAddress IN CONST PCI_EXP_EXT_HDR *HeadersBaseAddress
@ -5647,7 +5631,6 @@ PrintInterpretedExtendedCompatibilityTph (
@param[in] PciExpressCapPtr The address of the PCIe capabilities structure. @param[in] PciExpressCapPtr The address of the PCIe capabilities structure.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
PrintInterpretedExtendedCompatibilitySecondary ( PrintInterpretedExtendedCompatibilitySecondary (
IN CONST PCI_EXP_EXT_HDR *HeaderAddress, IN CONST PCI_EXP_EXT_HDR *HeaderAddress,
IN CONST PCI_EXP_EXT_HDR *HeadersBaseAddress, IN CONST PCI_EXP_EXT_HDR *HeadersBaseAddress,
@ -5689,7 +5672,6 @@ PrintInterpretedExtendedCompatibilitySecondary (
@param[in] PciExpressCapPtr The address of the PCIe capabilities structure. @param[in] PciExpressCapPtr The address of the PCIe capabilities structure.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
PrintPciExtendedCapabilityDetails( PrintPciExtendedCapabilityDetails(
IN CONST PCI_EXP_EXT_HDR *HeadersBaseAddress, IN CONST PCI_EXP_EXT_HDR *HeadersBaseAddress,
IN CONST PCI_EXP_EXT_HDR *HeaderAddress, IN CONST PCI_EXP_EXT_HDR *HeaderAddress,

View File

@ -29,7 +29,6 @@
@retval SHELL_SUCCESS The operation was successful. @retval SHELL_SUCCESS The operation was successful.
**/ **/
SHELL_STATUS SHELL_STATUS
EFIAPI
DisplaySettings ( DisplaySettings (
IN UINTN HandleIdx, IN UINTN HandleIdx,
IN BOOLEAN HandleValid IN BOOLEAN HandleValid

View File

@ -36,7 +36,6 @@ STATIC CONST SHELL_PARAM_ITEM ParamList[] = {
empty.) empty.)
**/ **/
BOOLEAN BOOLEAN
EFIAPI
IsStringOfHexNibbles ( IsStringOfHexNibbles (
IN CONST CHAR16 *String IN CONST CHAR16 *String
) )

View File

@ -24,7 +24,6 @@
@param[in] Option Whether to print the additional information. @param[in] Option Whether to print the additional information.
**/ **/
VOID VOID
EFIAPI
DisplaySELAccessMethod ( DisplaySELAccessMethod (
IN CONST UINT8 Key, IN CONST UINT8 Key,
IN CONST UINT8 Option IN CONST UINT8 Option
@ -76,7 +75,6 @@ DisplaySELAccessMethod (
@param[in] Option Whether to print the additional information. @param[in] Option Whether to print the additional information.
**/ **/
VOID VOID
EFIAPI
DisplaySELLogStatus ( DisplaySELLogStatus (
UINT8 Key, UINT8 Key,
UINT8 Option UINT8 Option
@ -115,7 +113,6 @@ DisplaySELLogStatus (
@param[in] Option Whether to print the additional information. @param[in] Option Whether to print the additional information.
**/ **/
VOID VOID
EFIAPI
DisplaySysEventLogHeaderFormat ( DisplaySysEventLogHeaderFormat (
UINT8 Key, UINT8 Key,
UINT8 Option UINT8 Option
@ -220,7 +217,6 @@ DisplaySysEventLogHeaderType1 (
@param[in] LogHeader Format informcation. @param[in] LogHeader Format informcation.
**/ **/
VOID VOID
EFIAPI
DisplaySysEventLogHeader ( DisplaySysEventLogHeader (
UINT8 LogHeaderFormat, UINT8 LogHeaderFormat,
UINT8 *LogHeader UINT8 *LogHeader
@ -334,7 +330,6 @@ DisplayElVdfInfo (
@param[in] LogAreaLength Length of the data. @param[in] LogAreaLength Length of the data.
**/ **/
VOID VOID
EFIAPI
DisplaySysEventLogData ( DisplaySysEventLogData (
UINT8 *LogData, UINT8 *LogData,
UINT16 LogAreaLength UINT16 LogAreaLength

View File

@ -56,7 +56,6 @@ typedef struct {
@param[in] Option Whether to print the additional information. @param[in] Option Whether to print the additional information.
**/ **/
VOID VOID
EFIAPI
DisplaySELAccessMethod ( DisplaySELAccessMethod (
IN CONST UINT8 Key, IN CONST UINT8 Key,
IN CONST UINT8 Option IN CONST UINT8 Option
@ -69,7 +68,6 @@ DisplaySELAccessMethod (
@param[in] Option Whether to print the additional information. @param[in] Option Whether to print the additional information.
**/ **/
VOID VOID
EFIAPI
DisplaySELLogStatus ( DisplaySELLogStatus (
UINT8 Key, UINT8 Key,
UINT8 Option UINT8 Option
@ -82,7 +80,6 @@ DisplaySELLogStatus (
@param[in] Option Whether to print the additional information. @param[in] Option Whether to print the additional information.
**/ **/
VOID VOID
EFIAPI
DisplaySysEventLogHeaderFormat ( DisplaySysEventLogHeaderFormat (
UINT8 Key, UINT8 Key,
UINT8 Option UINT8 Option
@ -95,7 +92,6 @@ DisplaySysEventLogHeaderFormat (
@param[in] LogHeader Format informcation. @param[in] LogHeader Format informcation.
**/ **/
VOID VOID
EFIAPI
DisplaySysEventLogHeader ( DisplaySysEventLogHeader (
UINT8 LogHeaderFormat, UINT8 LogHeaderFormat,
UINT8 *LogHeader UINT8 *LogHeader
@ -108,7 +104,6 @@ DisplaySysEventLogHeader (
@param[in] LogAreaLength Length of the data. @param[in] LogAreaLength Length of the data.
**/ **/
VOID VOID
EFIAPI
DisplaySysEventLogData ( DisplaySysEventLogData (
UINT8 *LogData, UINT8 *LogData,
UINT16 LogAreaLength UINT16 LogAreaLength

View File

@ -242,7 +242,6 @@ Done:
@retval EFI_BAD_BUFFER_SIZE structure is out of the range of SMBIOS table. @retval EFI_BAD_BUFFER_SIZE structure is out of the range of SMBIOS table.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
SMBiosView ( SMBiosView (
IN UINT8 QueryType, IN UINT8 QueryType,
IN UINT16 QueryHandle, IN UINT16 QueryHandle,
@ -416,7 +415,6 @@ SMBiosView (
@retval EFI_BAD_BUFFER_SIZE structure is out of the range of SMBIOS table. @retval EFI_BAD_BUFFER_SIZE structure is out of the range of SMBIOS table.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
SMBios64View ( SMBios64View (
IN UINT8 QueryType, IN UINT8 QueryType,
IN UINT16 QueryHandle, IN UINT16 QueryHandle,
@ -582,7 +580,6 @@ SMBios64View (
@retval EFI_SUCCESS print is successful. @retval EFI_SUCCESS print is successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
InitSmbiosTableStatistics ( InitSmbiosTableStatistics (
VOID VOID
) )
@ -672,7 +669,6 @@ InitSmbiosTableStatistics (
@retval EFI_SUCCESS Calculation was successful. @retval EFI_SUCCESS Calculation was successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
CalculateSmbios64BitStructureCountAndLength ( CalculateSmbios64BitStructureCountAndLength (
SMBIOS_TABLE_3_0_ENTRY_POINT *Smbios64EntryPoint, SMBIOS_TABLE_3_0_ENTRY_POINT *Smbios64EntryPoint,
UINTN *NumberOfSmbios64Structures, UINTN *NumberOfSmbios64Structures,
@ -722,7 +718,6 @@ CalculateSmbios64BitStructureCountAndLength (
@retval EFI_SUCCESS print is successful. @retval EFI_SUCCESS print is successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
InitSmbios64BitTableStatistics ( InitSmbios64BitTableStatistics (
VOID VOID
) )
@ -819,7 +814,6 @@ InitSmbios64BitTableStatistics (
@retval EFI_SUCCESS print is successful. @retval EFI_SUCCESS print is successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
DisplayStatisticsTable ( DisplayStatisticsTable (
IN UINT8 Option IN UINT8 Option
) )
@ -900,7 +894,6 @@ DisplayStatisticsTable (
@retval EFI_SUCCESS print is successful. @retval EFI_SUCCESS print is successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
DisplaySmbios64BitStatisticsTable ( DisplaySmbios64BitStatisticsTable (
IN UINT8 Option IN UINT8 Option
) )
@ -981,7 +974,6 @@ DisplaySmbios64BitStatisticsTable (
@return A pointer to a string representing the ShowType (or 'undefined type' if not known). @return A pointer to a string representing the ShowType (or 'undefined type' if not known).
**/ **/
CHAR16 * CHAR16 *
EFIAPI
GetShowTypeString ( GetShowTypeString (
UINT8 ShowType UINT8 ShowType
) )

View File

@ -39,7 +39,6 @@ typedef struct {
@retval EFI_BAD_BUFFER_SIZE structure is out of the range of SMBIOS table. @retval EFI_BAD_BUFFER_SIZE structure is out of the range of SMBIOS table.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
SMBiosView ( SMBiosView (
IN UINT8 QueryType, IN UINT8 QueryType,
IN UINT16 QueryHandle, IN UINT16 QueryHandle,
@ -60,7 +59,6 @@ SMBiosView (
@retval EFI_BAD_BUFFER_SIZE structure is out of the range of SMBIOS table. @retval EFI_BAD_BUFFER_SIZE structure is out of the range of SMBIOS table.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
SMBios64View ( SMBios64View (
IN UINT8 QueryType, IN UINT8 QueryType,
IN UINT16 QueryHandle, IN UINT16 QueryHandle,
@ -74,7 +72,6 @@ SMBios64View (
@retval EFI_SUCCESS print is successful. @retval EFI_SUCCESS print is successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
InitSmbiosTableStatistics ( InitSmbiosTableStatistics (
VOID VOID
); );
@ -85,7 +82,6 @@ InitSmbiosTableStatistics (
@retval EFI_SUCCESS print is successful. @retval EFI_SUCCESS print is successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
InitSmbios64BitTableStatistics ( InitSmbios64BitTableStatistics (
VOID VOID
); );
@ -98,7 +94,6 @@ InitSmbios64BitTableStatistics (
@retval EFI_SUCCESS print is successful. @retval EFI_SUCCESS print is successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
DisplayStatisticsTable ( DisplayStatisticsTable (
IN UINT8 Option IN UINT8 Option
); );
@ -111,7 +106,6 @@ DisplayStatisticsTable (
@retval EFI_SUCCESS print is successful. @retval EFI_SUCCESS print is successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
DisplaySmbios64BitStatisticsTable ( DisplaySmbios64BitStatisticsTable (
IN UINT8 Option IN UINT8 Option
); );
@ -124,7 +118,6 @@ DisplaySmbios64BitStatisticsTable (
@return A pointer to a string representing the ShowType (or 'undefined type' if not known). @return A pointer to a string representing the ShowType (or 'undefined type' if not known).
**/ **/
CHAR16* CHAR16*
EFIAPI
GetShowTypeString ( GetShowTypeString (
UINT8 ShowType UINT8 ShowType
); );

View File

@ -131,7 +131,6 @@ UefiShellDebug1CommandsLibDestructor (
//Stolen from MdePkg Baselib //Stolen from MdePkg Baselib
**/ **/
CHAR16 CHAR16
EFIAPI
CharToUpper ( CharToUpper (
IN CHAR16 Char IN CHAR16 Char
) )
@ -154,7 +153,6 @@ CharToUpper (
@retval EFI_NOT_FOUND A configuration table matching TableGuid was not found. @retval EFI_NOT_FOUND A configuration table matching TableGuid was not found.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
GetSystemConfigurationTable ( GetSystemConfigurationTable (
IN EFI_GUID *TableGuid, IN EFI_GUID *TableGuid,
IN OUT VOID **Table IN OUT VOID **Table
@ -187,7 +185,6 @@ GetSystemConfigurationTable (
**/ **/
UINTN UINTN
EFIAPI
HexCharToUintn ( HexCharToUintn (
IN CHAR16 Char IN CHAR16 Char
) )
@ -209,7 +206,6 @@ HexCharToUintn (
@retval EFI_SUCCESS The conversion was successful. @retval EFI_SUCCESS The conversion was successful.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
ConvertStringToGuid ( ConvertStringToGuid (
IN CONST CHAR16 *StringGuid, IN CONST CHAR16 *StringGuid,
IN OUT EFI_GUID *Guid IN OUT EFI_GUID *Guid
@ -300,7 +296,6 @@ ConvertStringToGuid (
@param[in] LastRow The last printable row. @param[in] LastRow The last printable row.
**/ **/
VOID VOID
EFIAPI
EditorClearLine ( EditorClearLine (
IN UINTN Row, IN UINTN Row,
IN UINTN LastCol, IN UINTN LastCol,
@ -342,7 +337,6 @@ EditorClearLine (
@retval FALSE The character is not valid. @retval FALSE The character is not valid.
**/ **/
BOOLEAN BOOLEAN
EFIAPI
IsValidFileNameChar ( IsValidFileNameChar (
IN CONST CHAR16 Ch IN CONST CHAR16 Ch
) )
@ -366,7 +360,6 @@ IsValidFileNameChar (
@retval FALSE The filename is not ok. @retval FALSE The filename is not ok.
**/ **/
BOOLEAN BOOLEAN
EFIAPI
IsValidFileName ( IsValidFileName (
IN CONST CHAR16 *Name IN CONST CHAR16 *Name
) )
@ -408,7 +401,6 @@ IsValidFileName (
@return the valid filename. @return the valid filename.
**/ **/
CHAR16 * CHAR16 *
EFIAPI
EditGetDefaultFileName ( EditGetDefaultFileName (
IN CONST CHAR16 *Extension IN CONST CHAR16 *Extension
) )
@ -462,7 +454,6 @@ EditGetDefaultFileName (
@retval EFI_INVALID_PARAMETER FileName was a directory. @retval EFI_INVALID_PARAMETER FileName was a directory.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
ReadFileIntoBuffer ( ReadFileIntoBuffer (
IN CONST CHAR16 *FileName, IN CONST CHAR16 *FileName,
OUT VOID **Buffer, OUT VOID **Buffer,

View File

@ -72,7 +72,6 @@ extern EFI_HANDLE gShellDebug1HiiHandle;
@retval EFI_NOT_FOUND A configuration table matching TableGuid was not found. @retval EFI_NOT_FOUND A configuration table matching TableGuid was not found.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
GetSystemConfigurationTable ( GetSystemConfigurationTable (
IN EFI_GUID *TableGuid, IN EFI_GUID *TableGuid,
IN OUT VOID **Table IN OUT VOID **Table
@ -85,7 +84,6 @@ GetSystemConfigurationTable (
@param[in, out] Guid The pointer to the buffer to get the GUID value. @param[in, out] Guid The pointer to the buffer to get the GUID value.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
ConvertStringToGuid ( ConvertStringToGuid (
IN CONST CHAR16 *StringGuid, IN CONST CHAR16 *StringGuid,
IN OUT EFI_GUID *Guid IN OUT EFI_GUID *Guid
@ -105,7 +103,6 @@ ConvertStringToGuid (
**/ **/
UINTN UINTN
EFIAPI
HexCharToUintn ( HexCharToUintn (
IN CHAR16 Char IN CHAR16 Char
); );
@ -352,7 +349,6 @@ ShellCommandRunHexEdit (
@param[in] LastRow The last printable row. @param[in] LastRow The last printable row.
**/ **/
VOID VOID
EFIAPI
EditorClearLine ( EditorClearLine (
IN UINTN Row, IN UINTN Row,
IN UINTN LastCol, IN UINTN LastCol,
@ -368,7 +364,6 @@ EditorClearLine (
@retval FALSE The filename is not ok. @retval FALSE The filename is not ok.
**/ **/
BOOLEAN BOOLEAN
EFIAPI
IsValidFileName ( IsValidFileName (
IN CONST CHAR16 *Name IN CONST CHAR16 *Name
); );
@ -382,7 +377,6 @@ IsValidFileName (
@return the valid filename. @return the valid filename.
**/ **/
CHAR16 * CHAR16 *
EFIAPI
EditGetDefaultFileName ( EditGetDefaultFileName (
IN CONST CHAR16 *Extension IN CONST CHAR16 *Extension
); );
@ -410,7 +404,6 @@ EditGetDefaultFileName (
@retval EFI_INVALID_PARAMETER FileName was a directory. @retval EFI_INVALID_PARAMETER FileName was a directory.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
ReadFileIntoBuffer ( ReadFileIntoBuffer (
IN CONST CHAR16 *FileName, IN CONST CHAR16 *FileName,
OUT VOID **Buffer, OUT VOID **Buffer,