VirtualBox

source: vbox/trunk/src/VBox/Devices/EFI/Firmware/ShellPkg/Application/Shell/FileHandleInternal.h@ 81028

最後變更 在這個檔案從81028是 80721,由 vboxsync 提交於 6 年 前

Devices/EFI/FirmwareNew: Start upgrade process to edk2-stable201908 (compiles on Windows and works to some extent), bugref:4643

  • 屬性 svn:eol-style 設為 native
檔案大小: 1.6 KB
 
1/** @file
2 internal worker functions for FileHandleWrappers to use
3
4 Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.<BR>
5 SPDX-License-Identifier: BSD-2-Clause-Patent
6
7**/
8
9#ifndef _FILE_HANDLE_INTERNAL_HEADER_
10#define _FILE_HANDLE_INTERNAL_HEADER_
11
12/**
13 Move the cursor position one character backward.
14
15 @param[in] LineLength Length of a line. Get it by calling QueryMode
16 @param[in, out] Column Current column of the cursor position
17 @param[in, out] Row Current row of the cursor position
18**/
19VOID
20MoveCursorBackward (
21 IN UINTN LineLength,
22 IN OUT UINTN *Column,
23 IN OUT UINTN *Row
24 );
25
26/**
27 Move the cursor position one character forward.
28
29 @param[in] LineLength Length of a line.
30 @param[in] TotalRow Total row of a screen
31 @param[in, out] Column Current column of the cursor position
32 @param[in, out] Row Current row of the cursor position
33**/
34VOID
35MoveCursorForward (
36 IN UINTN LineLength,
37 IN UINTN TotalRow,
38 IN OUT UINTN *Column,
39 IN OUT UINTN *Row
40 );
41
42/**
43 Prints out each previously typed command in the command list history log.
44
45 When each screen is full it will pause for a key before continuing.
46
47 @param[in] TotalCols How many columns are on the screen
48 @param[in] TotalRows How many rows are on the screen
49 @param[in] StartColumn which column to start at
50**/
51VOID
52PrintCommandHistory (
53 IN CONST UINTN TotalCols,
54 IN CONST UINTN TotalRows,
55 IN CONST UINTN StartColumn
56 );
57
58#endif //_FILE_HANDLE_INTERNAL_HEADER_
59
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette