mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 18:26:39 +02:00
13 lines
161 B
C
13 lines
161 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <Windows.h>
|
||
|
|
#include <optional>
|
||
|
|
|
||
|
|
namespace QuickAccessHost
|
||
|
|
{
|
||
|
|
void start();
|
||
|
|
void show();
|
||
|
|
void stop();
|
||
|
|
bool is_running();
|
||
|
|
}
|