2019-09-05 00:26:26 +08:00
|
|
|
#pragma once
|
|
|
|
// Start the Tray Icon
|
|
|
|
void start_tray_icon();
|
2019-12-17 01:36:52 +08:00
|
|
|
// Stop the Tray Icon
|
|
|
|
void stop_tray_icon();
|
2019-09-05 00:26:26 +08:00
|
|
|
// Open the Settings Window
|
|
|
|
void open_settings_window();
|
|
|
|
// Callback type to be called by the tray icon loop
|
2019-12-27 00:26:11 +08:00
|
|
|
typedef void (*main_loop_callback_function)(PVOID);
|
2019-09-05 00:26:26 +08:00
|
|
|
// Calls a callback in _callback
|
|
|
|
bool dispatch_run_on_main_ui_thread(main_loop_callback_function _callback, PVOID data);
|
2020-04-21 15:30:12 +08:00
|
|
|
|
|
|
|
const inline wchar_t* pt_tray_icon_window_class = L"PToyTrayIconWindow";
|