mirror of
https://github.com/microsoft/terminal.git
synced 2025-12-11 04:20:31 -06:00
## Summary of the Pull Request Adding missed MIT license in a few files. ## PR Checklist * [X] Closes #12062 * [X] CLA signed. If not, go over [here](https://cla.opensource.microsoft.com/microsoft/Terminal) and sign the CLA
15 lines
531 B
C
15 lines
531 B
C
/*
|
|
* Copyright (c) Microsoft Corporation.
|
|
* Licensed under the MIT license.
|
|
*
|
|
* Reserved console space.
|
|
*
|
|
* This was moved from the console code so that we can localize it
|
|
* in one place. This was necessary for dealing with the background
|
|
* color, which we need to have for the hungapp drawing. These are
|
|
* stored in the extra-window-bytes of each console.
|
|
*/
|
|
#define GWL_CONSOLE_WNDALLOC (3 * sizeof(DWORD))
|
|
#define GWL_CONSOLE_PID 0
|
|
#define GWL_CONSOLE_TID 4
|
|
#define GWL_CONSOLE_BKCOLOR 8 |