ReactOS 0.4.16-dev-36-g301675c
|
Go to the source code of this file.
Classes | |
struct | _CONSOLE_STATE_INFO |
Macros | |
#define | WM_SETCONSOLEINFO (WM_USER + 201) |
#define | RGBFromAttrib(Console, Attribute) ((Console)->Colors[(Attribute) & 0xF]) |
#define | TextAttribFromAttrib(Attribute) ( !((Attribute) & COMMON_LVB_REVERSE_VIDEO) ? (Attribute) & 0xF : ((Attribute) >> 4) & 0xF ) |
#define | BkgdAttribFromAttrib(Attribute) ( !((Attribute) & COMMON_LVB_REVERSE_VIDEO) ? ((Attribute) >> 4) & 0xF : (Attribute) & 0xF ) |
#define | MakeAttrib(TextAttrib, BkgdAttrib) (USHORT)((((BkgdAttrib) & 0xF) << 4) | ((TextAttrib) & 0xF)) |
Typedefs | |
typedef struct _CONSOLE_STATE_INFO | CONSOLE_STATE_INFO |
typedef struct _CONSOLE_STATE_INFO * | PCONSOLE_STATE_INFO |
Functions | |
BOOLEAN | ConCfgOpenUserSettings (IN LPCWSTR ConsoleTitle, OUT PHKEY phSubKey, IN REGSAM samDesired, IN BOOLEAN Create) |
BOOLEAN | ConCfgReadUserSettings (IN OUT PCONSOLE_STATE_INFO ConsoleInfo, IN BOOLEAN DefaultSettings) |
BOOLEAN | ConCfgWriteUserSettings (IN PCONSOLE_STATE_INFO ConsoleInfo, IN BOOLEAN DefaultSettings) |
VOID | ConCfgInitDefaultSettings (IN OUT PCONSOLE_STATE_INFO ConsoleInfo) |
VOID | ConCfgGetDefaultSettings (IN OUT PCONSOLE_STATE_INFO ConsoleInfo) |
#define BkgdAttribFromAttrib | ( | Attribute | ) | ( !((Attribute) & COMMON_LVB_REVERSE_VIDEO) ? ((Attribute) >> 4) & 0xF : (Attribute) & 0xF ) |
Definition at line 73 of file settings.h.
#define MakeAttrib | ( | TextAttrib, | |
BkgdAttrib | |||
) | (USHORT)((((BkgdAttrib) & 0xF) << 4) | ((TextAttrib) & 0xF)) |
Definition at line 74 of file settings.h.
Definition at line 71 of file settings.h.
#define TextAttribFromAttrib | ( | Attribute | ) | ( !((Attribute) & COMMON_LVB_REVERSE_VIDEO) ? (Attribute) & 0xF : ((Attribute) >> 4) & 0xF ) |
Definition at line 72 of file settings.h.
Definition at line 21 of file settings.h.
typedef struct _CONSOLE_STATE_INFO * PCONSOLE_STATE_INFO |
VOID ConCfgGetDefaultSettings | ( | IN OUT PCONSOLE_STATE_INFO | ConsoleInfo | ) |
Definition at line 491 of file settings.c.
Referenced by ConSrvInitConsole(), and InitDefaultConsoleInfo().
VOID ConCfgInitDefaultSettings | ( | IN OUT PCONSOLE_STATE_INFO | ConsoleInfo | ) |
HKCU,"Console","LoadConIme",0x00010003,1
Definition at line 436 of file settings.c.
Referenced by ConCfgGetDefaultSettings().
BOOLEAN ConCfgOpenUserSettings | ( | IN LPCWSTR | ConsoleTitle, |
OUT PHKEY | phSubKey, | ||
IN REGSAM | samDesired, | ||
IN BOOLEAN | Create | ||
) |
Definition at line 93 of file settings.c.
Referenced by ConCfgReadUserSettings(), and ConCfgWriteUserSettings().
BOOLEAN ConCfgReadUserSettings | ( | IN OUT PCONSOLE_STATE_INFO | ConsoleInfo, |
IN BOOLEAN | DefaultSettings | ||
) |
Definition at line 167 of file settings.c.
Referenced by ConCfgGetDefaultSettings(), and ConSrvInitConsole().
BOOLEAN ConCfgWriteUserSettings | ( | IN PCONSOLE_STATE_INFO | ConsoleInfo, |
IN BOOLEAN | DefaultSettings | ||
) |
Definition at line 344 of file settings.c.
Referenced by ConCfgGetDefaultSettings(), and InitApplet().