mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 11:16:51 +02:00
* Integrate Mouse Without Borders into PowerToys --------- Co-authored-by: Jaime Bernardo <jaime@janeasystems.com>
18 lines
397 B
C++
18 lines
397 B
C++
#pragma once
|
|
|
|
class Trace
|
|
{
|
|
public:
|
|
static void RegisterProvider() noexcept;
|
|
static void UnregisterProvider() noexcept;
|
|
|
|
class MouseWithoutBorders
|
|
{
|
|
public:
|
|
static void Enable(bool enabled) noexcept;
|
|
static void ToggleServiceRegistration(bool enabled) noexcept;
|
|
static void Activate() noexcept;
|
|
static void AddFirewallRule() noexcept;
|
|
};
|
|
};
|