mirror of
https://github.com/WinDurango/WinDurango.git
synced 2026-04-25 02:48:20 -05:00
19 lines
564 B
C++
19 lines
564 B
C++
#pragma once
|
|
#include "Windows.Xbox.ApplicationModel.State.Internal.ProtocolQuery.g.h"
|
|
|
|
namespace winrt::Windows::Xbox::ApplicationModel::State::Internal::implementation
|
|
{
|
|
struct ProtocolQuery
|
|
{
|
|
ProtocolQuery() = default;
|
|
|
|
static winrt::Windows::Foundation::Collections::IVectorView<hstring> FindAumidsForScheme(hstring const& scheme);
|
|
};
|
|
}
|
|
namespace winrt::Windows::Xbox::ApplicationModel::State::Internal::factory_implementation
|
|
{
|
|
struct ProtocolQuery : ProtocolQueryT<ProtocolQuery, implementation::ProtocolQuery>
|
|
{
|
|
};
|
|
}
|