mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-08 20:27:36 +02:00
21 lines
508 B
C++
21 lines
508 B
C++
#pragma once
|
|
|
|
#include "BackgroundHandler.g.h"
|
|
|
|
namespace winrt::PowerToysNotifications::implementation
|
|
{
|
|
struct BackgroundHandler : BackgroundHandlerT<BackgroundHandler>
|
|
{
|
|
BackgroundHandler() = default;
|
|
|
|
void Run(winrt::Windows::ApplicationModel::Background::IBackgroundTaskInstance);
|
|
};
|
|
}
|
|
|
|
namespace winrt::PowerToysNotifications::factory_implementation
|
|
{
|
|
struct BackgroundHandler : BackgroundHandlerT<BackgroundHandler, implementation::BackgroundHandler>
|
|
{
|
|
};
|
|
}
|