mirror of
https://github.com/Blinue/Magpie.git
synced 2026-06-24 02:04:10 +00:00
13 lines
195 B
C++
13 lines
195 B
C++
#pragma once
|
|
|
|
namespace winrt::Magpie::App {
|
|
|
|
struct AutoStartHelper {
|
|
static bool EnableAutoStart(bool runElevated);
|
|
|
|
static bool DisableAutoStart();
|
|
|
|
static bool IsAutoStartEnabled();
|
|
};
|
|
|
|
}
|