mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 10:46:33 +02:00
10 lines
341 B
C
10 lines
341 B
C
|
|
#pragma once
|
||
|
|
// Start the Tray Icon
|
||
|
|
void start_tray_icon();
|
||
|
|
// Open the Settings Window
|
||
|
|
void open_settings_window();
|
||
|
|
// Callback type to be called by the tray icon loop
|
||
|
|
typedef void(*main_loop_callback_function)(PVOID);
|
||
|
|
// Calls a callback in _callback
|
||
|
|
bool dispatch_run_on_main_ui_thread(main_loop_callback_function _callback, PVOID data);
|