mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 06:53:37 +00:00
[CMD][BOOTDATA] Populate 'Command Processor' registry data (#7114)
Improve compatibility. JIRA issue: CORE-8002 - Fix the default values of AutoCompletionChar and PathCompletionChar in cmd.exe. - Populate "SOFTWARE\Microsoft\Command Processor" registry key like Win2k3 does.
This commit is contained in:
parent
d4433ee0c9
commit
22561d5046
3 changed files with 12 additions and 3 deletions
|
@ -106,10 +106,10 @@
|
|||
* See https://technet.microsoft.com/en-us/library/cc978715.aspx
|
||||
* and https://technet.microsoft.com/en-us/library/cc940805.aspx
|
||||
* to know the differences between those two settings.
|
||||
* Values 0x00, 0x0D (carriage return) and 0x20 (space) disable completion.
|
||||
* Values 0x00, 0x0D (carriage return) and >= 0x20 (space) disable completion.
|
||||
*/
|
||||
TCHAR AutoCompletionChar = _T('\t'); // Default is 0x20
|
||||
TCHAR PathCompletionChar = _T('\t'); // Default is 0x20
|
||||
TCHAR AutoCompletionChar = 0x20; // Disabled by default
|
||||
TCHAR PathCompletionChar = 0x20; // Disabled by default
|
||||
|
||||
|
||||
SHORT maxx;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue