mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-15 03:07:56 +01:00
* Remove all VideoConferenceMute related code and files * Clean up vcm driver registry keys * Also remove the Webcam report tool * Also clean out video conference on the installer * Fix spellcheck * Remove comment about video conf * Update gpo files revision * Revert removing the VCM policies * Deprecate VCM GPO policy * Change deprecation message to show first supported version * Tweak supported strings in the adml
19 lines
414 B
C++
19 lines
414 B
C++
#pragma once
|
|
#include "CommonManaged.g.h"
|
|
|
|
namespace winrt::PowerToys::Interop::implementation
|
|
{
|
|
struct CommonManaged : CommonManagedT<CommonManaged>
|
|
{
|
|
CommonManaged() = default;
|
|
|
|
static hstring GetProductVersion();
|
|
};
|
|
}
|
|
namespace winrt::PowerToys::Interop::factory_implementation
|
|
{
|
|
struct CommonManaged : CommonManagedT<CommonManaged, implementation::CommonManaged>
|
|
{
|
|
};
|
|
}
|