terminal/src/propsheet/ColorsPage.h
Dustin Howett d4d59fa339 Initial release of the Windows Terminal source code
This commit introduces all of the Windows Terminal and Console Host source,
under the MIT license.
2019-05-02 15:29:04 -07:00

22 lines
569 B
C

/*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT license.
Module Name:
- ColorsPage.h
Abstract:
- This module contains the definitions for console colors dialog.
Author(s):
Mike Griese (migrie) Oct-2016
--*/
#pragma once
void ToggleV2ColorControls(__in const HWND hDlg);
INT_PTR WINAPI ColorDlgProc(HWND hDlg, UINT wMsg, WPARAM wParam, LPARAM lParam);
void SetOpacitySlider(__in HWND hDlg);
void PreviewOpacity(HWND hDlg, BYTE bOpacity);
LRESULT ColorTableControlProc(HWND hColor, UINT wMsg, WPARAM wParam, LPARAM lParam);