2 internal worker functions for FileHandleWrappers to use
4 Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.<BR>
5 This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
15 #ifndef _FILE_HANDLE_INTERNAL_HEADER_
16 #define _FILE_HANDLE_INTERNAL_HEADER_
19 Move the cursor position one character backward.
21 @param[in] LineLength Length of a line. Get it by calling QueryMode
22 @param[in, out] Column Current column of the cursor position
23 @param[in, out] Row Current row of the cursor position
33 Move the cursor position one character forward.
35 @param[in] LineLength Length of a line.
36 @param[in] TotalRow Total row of a screen
37 @param[in, out] Column Current column of the cursor position
38 @param[in, out] Row Current row of the cursor position
49 Prints out each previously typed command in the command list history log.
51 When each screen is full it will pause for a key before continuing.
53 @param[in] TotalCols How many columns are on the screen
54 @param[in] TotalRows How many rows are on the screen
55 @param[in] StartColumn which column to start at
59 IN CONST UINTN TotalCols
,
60 IN CONST UINTN TotalRows
,
61 IN CONST UINTN StartColumn
64 #endif //_FILE_HANDLE_INTERNAL_HEADER_