mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 02:36:19 +02:00
* format_sources: exclude 3rd party sources * format common project * format leftovers in runner & settings projects * move source formatting-related files according to #939
15 lines
338 B
C++
15 lines
338 B
C++
#pragma once
|
|
|
|
#include <future>
|
|
|
|
#include <winrt/Windows.ApplicationModel.h>
|
|
|
|
namespace winstore
|
|
{
|
|
using winrt::Windows::ApplicationModel::StartupTaskState;
|
|
|
|
bool running_as_packaged();
|
|
std::future<void> switch_startup_task_state_async(const bool enabled);
|
|
std::future<StartupTaskState> get_startup_task_status_async();
|
|
}
|