mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 11:48:06 +01:00
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>
|
||
|
|
{
|
||
|
|
};
|
||
|
|
}
|