#include <windows_proc_table.h>
Definition at line 17 of file windows_proc_table.h.
◆ WindowsProcTable()
flutter::WindowsProcTable::WindowsProcTable |
( |
| ) |
|
Definition at line 12 of file windows_proc_table.cc.
13 user32_ = fml::NativeLibrary::Create(
"user32.dll");
15 user32_->ResolveFunction<GetPointerType_*>(
"GetPointerType");
◆ ~WindowsProcTable()
flutter::WindowsProcTable::~WindowsProcTable |
( |
| ) |
|
|
virtual |
◆ DwmFlush()
HRESULT flutter::WindowsProcTable::DwmFlush |
( |
| ) |
const |
|
virtual |
◆ DwmIsCompositionEnabled()
bool flutter::WindowsProcTable::DwmIsCompositionEnabled |
( |
| ) |
const |
|
virtual |
◆ GetHighContrastEnabled()
bool flutter::WindowsProcTable::GetHighContrastEnabled |
( |
| ) |
const |
|
virtual |
Definition at line 38 of file windows_proc_table.cc.
39 HIGHCONTRAST high_contrast = {.cbSize =
sizeof(HIGHCONTRAST)};
40 if (!::SystemParametersInfoW(SPI_GETHIGHCONTRAST,
sizeof(HIGHCONTRAST),
45 return high_contrast.dwFlags & HCF_HIGHCONTRASTON;
◆ GetPointerType()
BOOL flutter::WindowsProcTable::GetPointerType |
( |
UINT32 |
pointer_id, |
|
|
POINTER_INPUT_TYPE * |
pointer_type |
|
) |
| const |
|
virtual |
Definition at line 22 of file windows_proc_table.cc.
24 if (!get_pointer_type_.has_value()) {
28 return get_pointer_type_.value()(pointer_id, pointer_type);
◆ GetThreadPreferredUILanguages()
LRESULT flutter::WindowsProcTable::GetThreadPreferredUILanguages |
( |
DWORD |
flags, |
|
|
PULONG |
count, |
|
|
PZZWSTR |
languages, |
|
|
PULONG |
length |
|
) |
| const |
|
virtual |
The documentation for this class was generated from the following files: