#include "pch.h" #include #include #include #include #include #include #include #include // Non-localizable const std::wstring moduleName = L"AlwaysOnTop"; const std::wstring internalPath = L""; const std::wstring instanceMutexName = L"Local\\PowerToys_AlwaysOnTop_InstanceMutex"; int WINAPI wWinMain(_In_ HINSTANCE hInstance, _In_opt_ HINSTANCE hPrevInstance, _In_ PWSTR lpCmdLine, _In_ int nCmdShow) { Shared::Trace::ETWTrace trace; trace.UpdateState(true); winrt::init_apartment(); LoggerHelpers::init_logger(moduleName, internalPath, LogSettings::alwaysOnTopLoggerName); if (powertoys_gpo::getConfiguredAlwaysOnTopEnabledValue() == powertoys_gpo::gpo_rule_configured_disabled) { Logger::warn(L"Tried to start with a GPO policy setting the utility to always be disabled. Please contact your systems administrator."); return 0; } InitUnhandledExceptionHandler(); auto mutex = CreateMutex(nullptr, true, instanceMutexName.c_str()); if (mutex == nullptr) { Logger::error(L"Failed to create mutex. {}", get_last_error_or_default(GetLastError())); } if (GetLastError() == ERROR_ALREADY_EXISTS) { return 0; } auto mainThreadId = GetCurrentThreadId(); std::wstring pid = std::wstring(lpCmdLine); if (!pid.empty()) { ProcessWaiter::OnProcessTerminate(pid, [mainThreadId](int err) { if (err != ERROR_SUCCESS) { Logger::error(L"Failed to wait for parent process exit. {}", get_last_error_or_default(err)); } else { Logger::trace(L"PowerToys runner exited."); } Logger::trace(L"Exiting AlwaysOnTop"); PostThreadMessage(mainThreadId, WM_QUIT, 0, 0); }); } Trace::AlwaysOnTop::RegisterProvider(); AlwaysOnTop app(!pid.empty(), mainThreadId); run_message_loop(); Trace::AlwaysOnTop::UnregisterProvider(); trace.Flush(); return 0; }