mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 03:37:59 +01:00
14 lines
227 B
C
14 lines
227 B
C
|
|
#pragma once
|
||
|
|
#include <windows.h>
|
||
|
|
|
||
|
|
enum class AppTheme
|
||
|
|
{
|
||
|
|
Dark = 0,
|
||
|
|
Light = 1
|
||
|
|
};
|
||
|
|
|
||
|
|
struct ThemeHelpers
|
||
|
|
{
|
||
|
|
static AppTheme GetAppTheme();
|
||
|
|
static void ThemeHelpers::SetImmersiveDarkMode(HWND window, bool enabled);
|
||
|
|
};
|