mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-23 13:44:33 +02:00
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8525 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
fa62b7ce53
commit
41f2ff0b85
@ -340,36 +340,37 @@ EFI_STATUS
|
|||||||
/**
|
/**
|
||||||
@par Data Structure Description:
|
@par Data Structure Description:
|
||||||
Mode Structure pointed to by Simple Text Out protocol.
|
Mode Structure pointed to by Simple Text Out protocol.
|
||||||
|
|
||||||
@param MaxMode
|
|
||||||
The number of modes supported by QueryMode () and SetMode ().
|
|
||||||
|
|
||||||
@param Mode
|
|
||||||
The text mode of the output device(s).
|
|
||||||
|
|
||||||
@param Attribute
|
|
||||||
The current character output attribute
|
|
||||||
|
|
||||||
@param CursorColumn
|
|
||||||
The cursor's column.
|
|
||||||
|
|
||||||
@param CursorRow
|
|
||||||
The cursor's row.
|
|
||||||
|
|
||||||
@param CursorVisible
|
|
||||||
The cursor is currently visbile or not.
|
|
||||||
|
|
||||||
**/
|
**/
|
||||||
typedef struct {
|
typedef struct {
|
||||||
|
///
|
||||||
|
/// The number of modes supported by QueryMode () and SetMode ().
|
||||||
|
///
|
||||||
INT32 MaxMode;
|
INT32 MaxMode;
|
||||||
|
|
||||||
//
|
//
|
||||||
// current settings
|
// current settings
|
||||||
//
|
//
|
||||||
|
|
||||||
|
///
|
||||||
|
/// The text mode of the output device(s).
|
||||||
|
///
|
||||||
INT32 Mode;
|
INT32 Mode;
|
||||||
|
|
||||||
|
///
|
||||||
|
/// The current character output attribute
|
||||||
|
///
|
||||||
INT32 Attribute;
|
INT32 Attribute;
|
||||||
|
///
|
||||||
|
/// The cursor's column.
|
||||||
|
///
|
||||||
INT32 CursorColumn;
|
INT32 CursorColumn;
|
||||||
|
///
|
||||||
|
/// The cursor's row.
|
||||||
|
///
|
||||||
INT32 CursorRow;
|
INT32 CursorRow;
|
||||||
|
///
|
||||||
|
/// The cursor is currently visbile or not.
|
||||||
|
///
|
||||||
BOOLEAN CursorVisible;
|
BOOLEAN CursorVisible;
|
||||||
} EFI_SIMPLE_TEXT_OUTPUT_MODE;
|
} EFI_SIMPLE_TEXT_OUTPUT_MODE;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user