mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 18:57:19 +02:00
16 lines
741 B
C++
16 lines
741 B
C++
#pragma once
|
|
|
|
#include "timeutil.h"
|
|
|
|
namespace notifications
|
|
{
|
|
const inline wchar_t CantDragElevatedDontShowAgainRegistryPath[] = LR"(SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\DontShowMeThisDialogAgain\{e16ea82f-6d94-4f30-bb02-d6d911588afd})";
|
|
const inline int64_t CantDragElevatedDisableIntervalInDays = 30;
|
|
|
|
const inline wchar_t PreviewModulesDontShowAgainRegistryPath[] = LR"(SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\DontShowMeThisDialogAgain\{7e29e2b2-b31c-4dcd-b7b0-79c078b02430})";
|
|
const inline int64_t PreviewModulesDisableIntervalInDays = 30;
|
|
|
|
bool disable_toast(const wchar_t* registry_path);
|
|
bool is_toast_disabled(const wchar_t* registry_path, const int64_t disable_interval_in_days);
|
|
}
|