mirror of
https://github.com/WinDurango/WinDurango.git
synced 2026-01-16 08:09:57 -06:00
17 lines
538 B
C++
17 lines
538 B
C++
#include "pch.h"
|
|
#include "Microsoft.Xbox.Services.System.VerifyStringResult.h"
|
|
#include "Microsoft.Xbox.Services.System.VerifyStringResult.g.cpp"
|
|
|
|
|
|
namespace winrt::Microsoft::Xbox::Services::System::implementation
|
|
{
|
|
winrt::Microsoft::Xbox::Services::System::VerifyStringResultCode VerifyStringResult::ResultCode()
|
|
{
|
|
Logger::NotImplemented(); throw hresult_not_implemented();
|
|
}
|
|
hstring VerifyStringResult::FirstOffendingSubstring()
|
|
{
|
|
Logger::NotImplemented(); throw hresult_not_implemented();
|
|
}
|
|
}
|