Go to the source code of this file.
Classes | |
struct | _COMMAND |
struct | _CLE_POPUP |
struct | _COMMAND_HISTORY |
struct | _COOKED_READ_DATA |
struct | _ALIAS |
struct | _EXE_ALIAS_LIST |
Defines | |
#define | CLEPF_FALSE_UNICODE 0x0001 |
#define | POPUP_SIZE_X(POPUP) (SHORT)(((POPUP)->Region.Right - (POPUP)->Region.Left - 1)) |
#define | POPUP_SIZE_Y(POPUP) (SHORT)(((POPUP)->Region.Bottom - (POPUP)->Region.Top - 1)) |
#define | COMMAND_NUMBER_SIZE 8 |
#define | CLE_ALLOCATED 0x00000001 |
#define | CLE_RESET 0x00000002 |
#define | DEFAULT_NUMBER_OF_COMMANDS 25 |
#define | DEFAULT_NUMBER_OF_BUFFERS 4 |
#define | COMMAND_NUM_TO_INDEX(NUM, CMDHIST) (SHORT)(((NUM+(CMDHIST)->FirstCommand)%((CMDHIST)->MaximumNumberOfCommands))) |
#define | COMMAND_INDEX_TO_NUM(INDEX, CMDHIST) (SHORT)(((INDEX+((CMDHIST)->MaximumNumberOfCommands)-(CMDHIST)->FirstCommand)%((CMDHIST)->MaximumNumberOfCommands))) |
#define | COMMAND_IND_PREV(IND, CMDHIST) |
#define | COMMAND_IND_NEXT(IND, CMDHIST) |
#define | COMMAND_IND_DEC(IND, CMDHIST) |
#define | COMMAND_IND_INC(IND, CMDHIST) |
#define | CLE_NO_POPUPS(COMMAND_HISTORY) (&(COMMAND_HISTORY)->PopupList == (COMMAND_HISTORY)->PopupList.Blink) |
#define | FMCFL_EXACT_MATCH 1 |
#define | FMCFL_JUST_LOOKING 2 |
#define | WC_DESTRUCTIVE_BACKSPACE 0x01 |
#define | WC_KEEP_CURSOR_VISIBLE 0x02 |
#define | WC_ECHO 0x04 |
#define | WC_FALSIFY_UNICODE 0x08 |
#define | WC_LIMIT_BACKSPACE 0x10 |
#define | UCLP_WRAP 1 |
#define | IS_WORD_DELIM(wch) ((wch) == L' ' || (gaWordDelimChars[0] && IsWordDelim(wch))) |
#define | WORD_DELIM_MAX 32 |
Typedefs | |
typedef _COMMAND | COMMAND |
typedef _COMMAND * | PCOMMAND |
typedef ULONG(* | PCLE_POPUP_INPUT_ROUTINE )(IN PVOID CookedReadData, IN PCSR_API_MSG WaitReplyMessage, IN PCSR_THREAD WaitingThread, IN BOOLEAN WaitRoutine) |
typedef _CLE_POPUP | CLE_POPUP |
typedef _CLE_POPUP * | PCLE_POPUP |
typedef _COMMAND_HISTORY | COMMAND_HISTORY |
typedef _COMMAND_HISTORY * | PCOMMAND_HISTORY |
typedef _COOKED_READ_DATA | COOKED_READ_DATA |
typedef _COOKED_READ_DATA * | PCOOKED_READ_DATA |
typedef _ALIAS | ALIAS |
typedef _ALIAS * | PALIAS |
typedef _EXE_ALIAS_LIST | EXE_ALIAS_LIST |
typedef _EXE_ALIAS_LIST * | PEXE_ALIAS_LIST |
Functions | |
NTSTATUS | ProcessCommandLine (IN PCOOKED_READ_DATA CookedReadData, IN WCHAR Char, IN DWORD KeyState, IN PCSR_API_MSG WaitReplyMessage, IN PCSR_THREAD WaitingThread, IN BOOLEAN WaitRoutine) |
VOID | DeleteCommandLine (IN OUT PCOOKED_READ_DATA CookedReadData, IN BOOL UpdateFields) |
VOID | RedrawCommandLine (IN PCOOKED_READ_DATA CookedReadData) |
VOID | EmptyCommandHistory (IN PCOMMAND_HISTORY CommandHistory) |
PCOMMAND_HISTORY | ReallocCommandHistory (IN PCONSOLE_INFORMATION Console, IN PCOMMAND_HISTORY CurrentCommandHistory, IN DWORD NumCommands) |
PCOMMAND_HISTORY | FindExeCommandHistory (IN PCONSOLE_INFORMATION Console, IN PVOID AppName, IN DWORD AppNameLength, IN BOOLEAN UnicodeExe) |
PCOMMAND_HISTORY | FindCommandHistory (IN PCONSOLE_INFORMATION Console, IN HANDLE ProcessHandle) |
ULONG | RetrieveNumberOfSpaces (IN SHORT OriginalCursorPositionX, IN PWCHAR Buffer, IN ULONG CurrentPosition) |
ULONG | RetrieveTotalNumberOfSpaces (IN SHORT OriginalCursorPositionX, IN PWCHAR Buffer, IN ULONG CurrentPosition) |
NTSTATUS | GetChar (IN PINPUT_INFORMATION InputInfo, OUT PWCHAR Char, IN BOOLEAN Wait, IN PCONSOLE_INFORMATION Console, IN PHANDLE_DATA HandleData, IN PCSR_API_MSG Message OPTIONAL, IN CSR_WAIT_ROUTINE WaitRoutine OPTIONAL, IN PVOID WaitParameter OPTIONAL, IN ULONG WaitParameterLength OPTIONAL, IN BOOLEAN WaitBlockExists OPTIONAL, OUT PBOOLEAN CommandLineEditingKeys OPTIONAL, OUT PBOOLEAN CommandLinePopupKeys OPTIONAL, OUT PBOOLEAN EnableScrollMode OPTIONAL, OUT PDWORD KeyState OPTIONAL) |
BOOL | IsCommandLinePopupKey (IN OUT PKEY_EVENT_RECORD KeyEvent) |
BOOL | IsCommandLineEditingKey (IN OUT PKEY_EVENT_RECORD KeyEvent) |
VOID | CleanUpPopups (IN PCOOKED_READ_DATA CookedReadData) |
BOOL | ProcessCookedReadInput (IN PCOOKED_READ_DATA CookedReadData, IN WCHAR Char, IN DWORD KeyState, OUT PNTSTATUS Status) |
VOID | DrawCommandListBorder (IN PCLE_POPUP Popup, IN PSCREEN_INFORMATION ScreenInfo) |
PCOMMAND | GetLastCommand (IN PCOMMAND_HISTORY CommandHistory) |
SHORT | FindMatchingCommand (IN PCOMMAND_HISTORY CommandHistory, IN PWCHAR CurrentCommand, IN ULONG CurrentCommandLength, IN SHORT CurrentIndex, IN DWORD Flags) |
NTSTATUS | CommandNumberPopup (IN PCOOKED_READ_DATA CookedReadData, IN PCSR_API_MSG WaitReplyMessage, IN PCSR_THREAD WaitingThread, IN BOOLEAN WaitRoutine) |
BOOLEAN | CookedReadWaitRoutine (IN PLIST_ENTRY WaitQueue, IN PCSR_THREAD WaitingThread, IN PCSR_API_MSG WaitReplyMessage, IN PVOID WaitParameter, IN PVOID SatisfyParameter1, IN PVOID SatisfyParameter2, IN ULONG WaitFlags) |
VOID | ReadRectFromScreenBuffer (IN PSCREEN_INFORMATION ScreenInfo, IN COORD SourcePoint, IN PCHAR_INFO Target, IN COORD TargetSize, IN PSMALL_RECT TargetRect) |
NTSTATUS | WriteCharsFromInput (IN PSCREEN_INFORMATION ScreenInfo, IN PWCHAR lpBufferBackupLimit, IN PWCHAR lpBuffer, IN PWCHAR lpString, IN OUT PDWORD NumBytes, OUT PLONG NumSpaces OPTIONAL, IN SHORT OriginalXPosition, IN DWORD dwFlags, OUT PSHORT ScrollY OPTIONAL) |
VOID | DrawCommandListPopup (IN PCLE_POPUP Popup, IN SHORT CurrentCommand, IN PCOMMAND_HISTORY CommandHistory, IN PSCREEN_INFORMATION ScreenInfo) |
VOID | UpdateCommandListPopup (IN SHORT Delta, IN OUT PSHORT CurrentCommand, IN PCOMMAND_HISTORY CommandHistory, IN PCLE_POPUP Popup, IN PSCREEN_INFORMATION ScreenInfo, IN DWORD Flags) |
VOID | InitExtendedEditKeys (CONST ExtKeyDefBuf *lpbuf) |
BOOL | IsPauseKey (IN PKEY_EVENT_RECORD pKeyEvent) |
BOOL | IsWordDelim (WCHAR) |
Variables | |
WCHAR | gaWordDelimChars [] |
CONST WCHAR | gaWordDelimCharsDefault [] |
|
Definition at line 65 of file cmdline.h. Referenced by AddCommand(), AllocateCommandHistory(), FindCommandHistory(), FindExeCommandHistory(), FreeCommandHistory(), ProcessCommandLine(), ResizeCommandHistoryBuffers(), RetrieveCommand(), and UpdatePopups(). |
|
Definition at line 154 of file cmdline.h. Referenced by AllocateCommandHistory(), CleanUpPopups(), CookedReadWaitRoutine(), EndPopup(), ProcessCommandNumberInput(), and UpdatePopups(). |
|
Definition at line 66 of file cmdline.h. Referenced by AddCommand(), AtFirstCommand(), EmptyCommandHistory(), FindMatchingCommand(), ReallocCommandHistory(), ResetCommandHistory(), and RetrieveCommand(). |
|
Definition at line 39 of file cmdline.h. Referenced by BeginPopup(), and EndPopup(). |
|
Value:
Definition at line 138 of file cmdline.h. Referenced by RemoveCommand(). |
|
Value:
Definition at line 146 of file cmdline.h. Referenced by AddCommand(), and RemoveCommand(). |
|
Value:
Definition at line 130 of file cmdline.h. Referenced by RetrieveCommand(). |
|
Value:
Definition at line 122 of file cmdline.h. Referenced by AddCommand(), FindMatchingCommand(), and RetrieveCommand(). |
|
Definition at line 113 of file cmdline.h. Referenced by BeginPopup(), CommandListPopup(), RemoveCommand(), and UpdateCommandListPopup(). |
|
Definition at line 112 of file cmdline.h. Referenced by DrawCommandListPopup(), ProcessCommandLine(), ProcessCommandNumberInput(), ReallocCommandHistory(), and UpdateCommandListPopup(). |
|
Definition at line 59 of file cmdline.h. Referenced by DrawCommandListPopup(). |
|
Definition at line 83 of file cmdline.h. Referenced by InitializeConsoleAttributes(). |
|
Definition at line 82 of file cmdline.h. Referenced by InitializeConsoleAttributes(). |
|
Definition at line 306 of file cmdline.h. Referenced by AddCommand(), and FindMatchingCommand(). |
|
Definition at line 307 of file cmdline.h. Referenced by FindMatchingCommand(), and ProcessCommandListInput(). |
|
Definition at line 399 of file cmdline.h. Referenced by HandleMouseEvent(), ProcessCommandLine(), and ProcessCookedReadInput(). |
|
Definition at line 57 of file cmdline.h. Referenced by CommandNumberPopup(), DrawCommandListBorder(), DrawCommandListPopup(), DrawPromptPopup(), and UpdateHighlight(). |
|
Definition at line 58 of file cmdline.h. Referenced by CommandListPopup(), DrawCommandListBorder(), DrawCommandListPopup(), DrawPromptPopup(), ProcessCommandListInput(), UpdateCommandListPopup(), and UpdateHighlight(). |
|
Definition at line 378 of file cmdline.h. Referenced by ProcessCommandListInput(), and UpdateCommandListPopup(). |
|
Definition at line 353 of file cmdline.h. Referenced by ProcessCommandLine(), ProcessCommandNumberInput(), ProcessCookedReadInput(), ProcessCopyFromCharInput(), ProcessCopyToCharInput(), RedrawCommandLine(), SetCurrentCommandLine(), and WWSB_WriteChars(). |
|
Definition at line 355 of file cmdline.h. Referenced by ProcessCommandLine(), ProcessCommandNumberInput(), ProcessCookedReadInput(), ProcessCopyFromCharInput(), ProcessCopyToCharInput(), RedrawCommandLine(), SetCurrentCommandLine(), and WWSB_WriteChars(). |
|
Definition at line 356 of file cmdline.h. Referenced by WriteCharsFromInput(), and WWSB_WriteChars(). |
|
Definition at line 354 of file cmdline.h. Referenced by ProcessCommandLine(), ProcessCommandNumberInput(), ProcessCookedReadInput(), ProcessCopyFromCharInput(), ProcessCopyToCharInput(), RedrawCommandLine(), SetCurrentCommandLine(), and WWSB_WriteChars(). |
|
Definition at line 357 of file cmdline.h. Referenced by WWSB_DoWriteConsole(), and WWSB_WriteChars(). |
|
Definition at line 405 of file cmdline.h. Referenced by GetRegistryValues(), and IsWordDelim(). |
|
Referenced by FindAlias(). |
|
Referenced by BeginPopup(), and CookedReadWaitRoutine(). |
|
Referenced by AddCommand(). |
|
Referenced by ReallocCommandHistory(). |
|
Referenced by ReadChars(). |
|
Referenced by AddExeAliasList(). |
|
|
|
Referenced by BeginPopup(), and CookedReadWaitRoutine(). |
|
Definition at line 29 of file cmdline.h. Referenced by CommandListPopup(), CommandNumberPopup(), CopyFromCharPopup(), and CopyToCharPopup(). |
|
|
|
|
|
Referenced by WWSB_AdjustCursorPosition(). |
|
|
|
Definition at line 1993 of file server/cmdline.c. References CLE_NO_POPUPS, and EndPopup(). Referenced by CookedReadWaitRoutine().
|
|
Definition at line 3150 of file server/cmdline.c. References COMMAND_NUMBER_LENGTH, DrawPromptPopup(), GetConsoleLangId(), ghInstance, LoadStringEx, MINIMUM_COMMAND_PROMPT_SIZE, msgCmdLineF9, NT_SUCCESS, NTSTATUS(), _CLE_POPUP::NumberRead, PCLE_POPUP_INPUT_ROUTINE, POPUP_SIZE_X, _CLE_POPUP::PopupInputRoutine, _COMMAND_HISTORY::PopupList, ProcessCommandNumberInput(), _CLE_POPUP::Region, SetCursorPosition(), SHORT, Status, and TRUE. Referenced by ProcessCommandLine(), and ProcessCommandListInput().
|
|
Definition at line 1541 of file server/stream.c. References ASSERT, _COOKED_READ_DATA::BackupLimit, _CONSOLE_READCONSOLE_MSG::Buffer, BUFFER_SIZE, _COOKED_READ_DATA::BytesRead, _CONSOLE_READCONSOLE_MSG::CaptureBufferSize, CLE_NO_POPUPS, CLE_POPUP, CleanUpPopups(), CloseOutputHandle(), _COOKED_READ_DATA::CommandHistory, _COOKED_READ_DATA::Console, CONSOLE_CTRL_BREAK_SEEN, CONSOLE_CTRL_C_SEEN, CONSOLE_FROMTHREADPERPROCESSDATA, CONSOLE_STATUS_READ_COMPLETE, CONSOLE_STATUS_WAIT, CONSOLE_STATUS_WAIT_NO_BLOCK, ConsoleHeapFree, ConsoleLocked, CookedRead(), DereferenceIoHandleNoCheck(), _COOKED_READ_DATA::Echo, _COOKED_READ_DATA::ExeName, FALSE, HANDLE_CLOSING, HANDLE_INPUT_PENDING, _COOKED_READ_DATA::HandleIndex, _INPUT_READ_HANDLE_DATA::InputHandleFlags, _HANDLE_DATA::InputReadData, LockReadCount, NT_SUCCESS, NTSTATUS(), NULL, PCLE_POPUP, _CLE_POPUP::PopupInputRoutine, _COMMAND_HISTORY::PopupList, _COOKED_READ_DATA::ProcessData, _INPUT_READ_HANDLE_DATA::ReadCount, Status, _COOKED_READ_DATA::TempHandle, TRUE, UnlockReadCount, and _COOKED_READ_DATA::UserBuffer. Referenced by CookedRead(), ProcessCommandListInput(), ProcessCommandNumberInput(), ProcessCopyFromCharInput(), and ProcessCopyToCharInput().
|
|
Definition at line 2009 of file server/cmdline.c. References CONSOLE_FALSE_UNICODE, DWORD, FillOutput, SetCursorPosition(), and TRUE. Referenced by ProcessCommandLine(), ProcessCommandNumberInput(), ProcessCookedReadInput(), ProcessCopyFromCharInput(), PropertiesUpdate(), and SetCurrentCommandLine().
|
|
Definition at line 4123 of file server/cmdline.c. References CONSOLE_ATTRIBUTE, CONSOLE_REAL_UNICODE, else, FillOutput, POPUP_SIZE_X, POPUP_SIZE_Y, and SHORT. Referenced by BeginPopup().
|
|
Definition at line 4346 of file server/cmdline.c. References CHAR, COMMAND_NUM_TO_INDEX, COMMAND_NUMBER_SIZE, CONSOLE_ASCII, CONSOLE_ATTRIBUTE, CONSOLE_FALSE_UNICODE, CONSOLE_OEMFONT_DISPLAY, CONSOLE_REAL_UNICODE, ConsoleHeapAlloc, ConsoleHeapFree, DWORD, FalseUnicodeToRealUnicode(), FillOutput, MAKE_TAG, max, NULL, POPUP_SIZE_X, POPUP_SIZE_Y, SHORT, and WriteOutputString. Referenced by CommandListPopup(), and UpdateCommandListPopup().
|
|
Definition at line 3227 of file server/cmdline.c. References CLE_RESET, ConsoleHeapFree, NULL, and SHORT. Referenced by ProcessCommandLine(), and SrvExpungeConsoleCommandHistory().
|
|
Definition at line 4564 of file server/cmdline.c. References ASSERT, CLE_ALLOCATED, History, and NULL. Referenced by FreeCommandHistory(), and SrvReadConsole().
|
|
Definition at line 1637 of file server/cmdline.c. References CLE_ALLOCATED, ConsoleHeapAlloc, ConsoleHeapFree, ConvertInputToUnicode(), History, MAKE_TAG, my_wcsncmpi, NULL, TMP_TAG, Unicode, and USHORT. Referenced by SrvExpungeConsoleCommandHistory(), SrvGetConsoleCommandHistory(), SrvGetConsoleCommandHistoryLength(), and SrvSetConsoleNumberOfCommands().
|
|
Definition at line 4078 of file server/cmdline.c. References CLE_RESET, _COMMAND::Command, COMMAND_IND_PREV, _COMMAND::CommandLength, FMCFL_EXACT_MATCH, FMCFL_JUST_LOOKING, my_wcsncmp, SHORT, and USHORT. Referenced by AddCommand(), ProcessCommandLine(), and ProcessCommandListInput().
|
|
Definition at line 263 of file server/stream.c. References ASSERT, BOOL, CHAR, CharToWchar(), Event(), FALSE, HIBYTE, IsCommandLineEditingKey(), IsCommandLinePopupKey(), IsDbcsExemptionForHighAnsi(), KEYEVENTSTATE_EQUAL_WINMODS, LOBYTE, NT_SUCCESS, NTSTATUS(), ReadInputBuffer(), SHORT, Status, TRUE, UINT, and VkKeyScan(). Referenced by CommonMenuDisplay(), CookedRead(), ProcessCommandListInput(), ProcessCommandNumberInput(), ProcessCopyFromCharInput(), ProcessCopyToCharInput(), RawReadWaitRoutine(), and ReadChars().
|
|
Definition at line 3217 of file server/cmdline.c. References NULL. Referenced by ProcessCommandLine(), and ProcessCopyToCharInput().
|
|
Definition at line 186 of file server/cmdline.c. References BYTE, DbgPrint, DWORD, gaDefaultKeyDef, gaKeyDef, NULL, and VOID(). Referenced by GetRegistryValues().
|
|
Referenced by GetChar(). |
|
Definition at line 2179 of file server/cmdline.c. References FALSE, gExtendedEditKey, ParseEditKeyInfo(), and TRUE. Referenced by GetChar().
|
|
Definition at line 289 of file server/cmdline.c. References BOOL, CTRL_BUT_NOT_ALT, gExtendedEditKey, L, NULL, and ParseEditKeyInfo(). Referenced by PreprocessInput().
|
|
Definition at line 309 of file server/cmdline.c. References ASSERT, BOOL, FALSE, gaWordDelimChars, L, TRUE, and WORD_DELIM_MAX.
|
|
Definition at line 3272 of file server/cmdline.c. References AdjustCursorPosition, ASSERT, AT_EOL, AtFirstCommand(), AtLastCommand(), BeginPopup(), BOOL, CLE_ALLOCATED, ClearAliases(), _COMMAND::Command, COMMAND_NUM_TO_INDEX, COMMAND_NUMBER_LENGTH, COMMAND_NUMBER_PROMPT_LENGTH, _COMMAND::CommandLength, CommandListPopup(), CommandNumberPopup(), CONSOLE_IS_DBCS_ENABLED, COPY_FROM_CHAR_PROMPT_LENGTH, COPY_TO_CHAR_PROMPT_LENGTH, CopyFromCharPopup(), CopyToCharPopup(), CTRL_PRESSED, DBGPRINT, DeleteCommandLine(), DWORD, EmptyCommandHistory(), FALSE, FindMatchingCommand(), GetLastCommand(), IS_WORD_DELIM, MINIMUM_COMMAND_PROMPT_SIZE, NT_SUCCESS, NTSTATUS(), NULL, PBYTE, RetrieveCommand(), RetrieveNthCommand(), RetrieveNumberOfSpaces(), RetrieveTotalNumberOfSpaces(), SetCursorMode(), SetCursorPosition(), SHORT, Status, TRUE, USHORT, WC_DESTRUCTIVE_BACKSPACE, WC_ECHO, WC_KEEP_CURSOR_VISIBLE, and WriteCharsFromInput(). Referenced by CookedRead(), and ProcessCookedReadInput().
|
|
Definition at line 876 of file server/stream.c. References AdjustCursorPosition, ASSERT, AT_EOL, BOOL, DeleteCommandLine(), DWORD, FALSE, gExtendedEditKey, INSERT_MODE, IS_WORD_DELIM, L, NT_SUCCESS, NULL, PBYTE, ProcessCommandLine(), RetrieveNumberOfSpaces(), SHORT, Status, TRUE, UNICODE_BACKSPACE, UNICODE_BACKSPACE2, UNICODE_CARRIAGERETURN, UNICODE_LINEFEED, WC_DESTRUCTIVE_BACKSPACE, WC_ECHO, WC_KEEP_CURSOR_VISIBLE, and WriteCharsFromInput(). Referenced by CookedRead(), and ProcessCommandListInput().
|
|
Definition at line 1415 of file output.c.
|
|
Definition at line 1597 of file server/cmdline.c. References CLE_RESET, COMMAND_HISTORY, COMMAND_NUM_TO_INDEX, ConsoleHeapAlloc, ConsoleHeapFree, History, HISTORY_TAG, MAKE_TAG, min, NULL, and SHORT. Referenced by ResizeCommandHistoryBuffers(), and SrvSetConsoleNumberOfCommands().
|
|
Referenced by PropertiesUpdate(). |
|
Definition at line 818 of file server/stream.c. References Buffer, IS_CONTROL_CHAR, NUMBER_OF_SPACES_IN_TAB, SHORT, and UNICODE_TAB. Referenced by ProcessCommandLine(), ProcessCookedReadInput(), and WWSB_WriteChars().
|
|
Definition at line 774 of file server/stream.c. References Buffer, IS_CONTROL_CHAR, NUMBER_OF_SPACES_IN_TAB, SHORT, and UNICODE_TAB. Referenced by ProcessCommandLine(), and RedrawCommandLine().
|
|
Definition at line 4500 of file server/cmdline.c. References BOOL, COMMAND_INDEX_TO_NUM, COMMAND_NUM_TO_INDEX, DrawCommandListPopup(), FALSE, POPUP_SIZE_Y, SHORT, Size, TRUE, UCLP_WRAP, and UpdateHighlight(). Referenced by ProcessCommandListInput().
|
|
Definition at line 3047 of file server/stream.c. References CONSOLE_GRAPHICS_BUFFER, CONSOLE_OEMFONT_DISPLAY, dwFlags, DWORD, WC_FALSIFY_UNICODE, and WriteChars. Referenced by ProcessCommandLine(), ProcessCommandNumberInput(), ProcessCookedReadInput(), ProcessCopyFromCharInput(), ProcessCopyToCharInput(), RedrawCommandLine(), and SetCurrentCommandLine().
|
|
Definition at line 401 of file cmdline.h. Referenced by GetRegistryValues(), and IsWordDelim(). |
|
Definition at line 402 of file cmdline.h. Referenced by GetRegistryValues(). |