Console-Docs icon indicating copy to clipboard operation
Console-Docs copied to clipboard

Windows Console Docs Repo

Results 27 Console-Docs issues
Sort by recently updated
recently updated
newest added

The declaration uses a constant string pointer but the definition had used a non-constant string pointer. The example only uses constant strings, so unifying the types to LPCSTR should be...

Fixes https://github.com/MicrosoftDocs/Console-Docs/issues/85

- No Hungarian - Recommend the use of WIL (for resource management and early returns) - Address different hosting scenarios in more detail

See: https://github.com/microsoft/terminal/issues/4126#issuecomment-571418661 --- #### Document Details ⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.* * ID: 34ea4fba-5919-fff6-9941-f213a557c651 * Version Independent ID: 5c22080b-6969-4721-5e5c-40c348680701 *...

Documentation for ReadConsoleInputEx contains a minor typo in the name of a flag: https://github.com/MicrosoftDocs/Console-Docs/blob/f3463bdcf2848a240e41cfcbafe222694a738a70/docs/readconsoleinputex.md?plain=1#L94 `CONSOLE_READ_NOMOVE` should read instead: `CONSOLE_READ_NOREMOVE`

Even though it should be const, the actual header declares it as non-const: ``` WINBASEAPI BOOL APIENTRY AddConsoleAliasA( _In_ LPSTR Source, _In_ LPSTR Target, _In_ LPSTR ExeName ); WINBASEAPI BOOL...

I'm seeing that this is the preferred solution compared to the older console API and I can see the potential to be more portable but the examples use wprintf in...

Hello, I can't find any reference to `MaxPhysicalWindowSize` in the console docs, I may be missing something, but is there a way to set this value? The initial `COORD` in...

[WriteConsole](https://learn.microsoft.com/en-us/windows/console/writeconsole) parameter _lpNumberOfCharsWritten_ has the annotation `_Out_opt_` (out optional) in the documentation but curl/curl#12131 reports that the parameter is mandatory for Windows XP. I checked the Windows 7 SDK and...

Fixed it. `` // Compiled with gcc-12.2.0-mingw-w64ucrt-10.0.0-r4 // gcc -o vts vts.c Where vts.c = source file name // System headers #include // Standard library C-style #include #include #include #include...