mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-09 20:57:22 +02: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);
|
||
|
|
};
|