mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-03 17:56:44 +02: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
13 lines
276 B
C++
13 lines
276 B
C++
#include "pch.h"
|
|
#include "CommonManaged.h"
|
|
#include "CommonManaged.g.cpp"
|
|
#include <common/version/version.h>
|
|
|
|
namespace winrt::PowerToys::Interop::implementation
|
|
{
|
|
hstring CommonManaged::GetProductVersion()
|
|
{
|
|
return hstring{ get_product_version() };
|
|
}
|
|
}
|