ReactOS
0.4.15-dev-1647-g91fceab
|
Go to the source code of this file.
Classes | |
struct | MUI_ENTRY |
struct | MUI_ERROR |
struct | MUI_PAGE |
struct | MUI_STRING |
struct | MUI_LANGUAGE_RESOURCE |
Typedefs | |
typedef struct MUI_ENTRY * | PMUI_ENTRY |
Functions | |
VOID | MUIDisplayPage (ULONG PageNumber) |
VOID | MUIClearPage (ULONG PageNumber) |
VOID | MUIDisplayErrorV (IN ULONG ErrorNum, OUT PINPUT_RECORD Ir, IN ULONG WaitEvent, IN va_list args) |
VOID __cdecl | MUIDisplayError (ULONG ErrorNum, PINPUT_RECORD Ir, ULONG WaitEvent,...) |
VOID | SetConsoleCodePage (VOID) |
PCSTR | MUIGetString (ULONG Number) |
const MUI_ENTRY * | MUIGetEntry (IN ULONG Page, IN INT TextID) |
VOID | MUIClearText (IN ULONG Page, IN INT TextID) |
VOID | MUIClearStyledText (IN ULONG Page, IN INT TextID, IN INT Flags) |
VOID | MUISetText (IN ULONG Page, IN INT TextID) |
VOID | MUISetStyledText (IN ULONG Page, IN INT TextID, IN INT Flags) |
typedef struct MUI_ENTRY * PMUI_ENTRY |
@MUIClearStyledText
Clears a portion of text from the console output, given the actual state style flag of the text.
[in] | Page | The MUI (Multilingual User Interface) entry page number, as a unsigned long integer. |
[in] | TextID | The text identification number (ID), as an integer. The parameter is used to identify its MUI properties like the coordinates, text style flag and its buffer content. |
[in] | Flags | The text style flag, as an integer. The flag determines the style of the text, such as being highlighted, underlined, high padding and so on. |
Definition at line 363 of file mui.c.
Referenced by FormatPartitionPage().
@MUIClearText
Clears a portion of text from the console output.
[in] | Page | The MUI (Multilingual User Interface) entry page number, as a unsigned long integer. |
[in] | TextID | The text identification number (ID), as an integer. The parameter is used to identify its MUI properties like the coordinates, text style flag and its buffer content. |
Definition at line 323 of file mui.c.
VOID __cdecl MUIDisplayError | ( | ULONG | ErrorNum, |
PINPUT_RECORD | Ir, | ||
ULONG | WaitEvent, | ||
... | |||
) |
VOID MUIDisplayErrorV | ( | IN ULONG | ErrorNum, |
OUT PINPUT_RECORD | Ir, | ||
IN ULONG | WaitEvent, | ||
IN va_list | args | ||
) |
Definition at line 178 of file mui.c.
Referenced by MUIDisplayError(), and USetupErrorRoutine().
@MUIGetEntry
Retrieves a MUI entry of a page, given the page number and the text ID.
[in] | Page | The MUI (Multilingual User Interface) entry page number, as a unsigned long integer. |
[in] | TextID | The text identification number (ID), as a unsigned integer. The parameter is used to identify its MUI properties like the coordinates, text style flag and its buffer content. |
Definition at line 276 of file mui.c.
Referenced by MUIClearStyledText(), MUIClearText(), MUISetStyledText(), and MUISetText().
Definition at line 230 of file mui.c.
Referenced by BootLoaderPage(), CheckFileSystemPage(), CreateExtendedPartitionPage(), CreateLogicalPartitionPage(), CreatePrimaryPartitionPage(), DeletePartitionPage(), DoChkdsk(), DoFormat(), DrawFileSystemList(), FileCopyCallback(), FileCopyPage(), FormatPartitionPage(), GetPartTypeStringFromPartitionType(), PrettifySize1(), PrettifySize2(), PrintDiskData(), PrintPartitionData(), ProgressCountdown(), QuitPage(), RegistryPage(), RegistryStatus(), RunUSetup(), SelectFileSystemPage(), SelectPartitionPage(), and ShowPartitionSizeInputBox().
@MUISetStyledText
Prints a text to the console output, with a style for it.
[in] | Page | The MUI (Multilingual User Interface) entry page number, as a unsigned long integer. |
[in] | TextID | The text identification number (ID), as an integer. The parameter is used to identify its MUI properties like the coordinates, text style flag and its buffer content. |
[in] | Flags | The text style flag, as an integer. The flag determines the style of the text, such as being highlighted, underlined, high padding and so on. |
Definition at line 438 of file mui.c.
@MUISetText
Prints a text to the console output.
[in] | Page | The MUI (Multilingual User Interface) entry page number, as a unsigned long integer. |
[in] | TextID | The text identification number (ID), as an integer. The parameter is used to identify its MUI properties like the coordinates, text style flag and its buffer content. |
Definition at line 401 of file mui.c.
Definition at line 456 of file mui.c.
Referenced by LanguagePage(), and SetupStartPage().