mirror of
https://github.com/WinDurango/WinDurango.git
synced 2026-01-19 09:45:11 -06:00
24 lines
841 B
C++
24 lines
841 B
C++
#include "pch.h"
|
|
#include "Windows.Xbox.ApplicationModel.State.Internal.PackageFullNameQuery.h"
|
|
#include "Windows.Xbox.ApplicationModel.State.Internal.PackageFullNameQuery.g.cpp"
|
|
|
|
namespace winrt::Windows::Xbox::ApplicationModel::State::Internal::implementation
|
|
{
|
|
bool PackageFullNameQuery::IsInbox(hstring const& packageFullName)
|
|
{
|
|
throw hresult_not_implemented();
|
|
}
|
|
bool PackageFullNameQuery::IsEra(hstring const& packageFullName)
|
|
{
|
|
throw hresult_not_implemented();
|
|
}
|
|
winrt::Windows::Xbox::ApplicationModel::State::Internal::PackageContentType PackageFullNameQuery::GetContentType(hstring const& packageFullName)
|
|
{
|
|
throw hresult_not_implemented();
|
|
}
|
|
bool PackageFullNameQuery::IsGameCore(hstring const& packageFullName)
|
|
{
|
|
throw hresult_not_implemented();
|
|
}
|
|
}
|