mirror of
https://github.com/WinDurango/WinDurango.git
synced 2026-01-10 05:09:32 -06:00
15 lines
407 B
C++
15 lines
407 B
C++
#pragma once
|
|
#include "Microsoft.Xbox.Services.System.VerifyStringResult.g.h"
|
|
|
|
|
|
namespace winrt::Microsoft::Xbox::Services::System::implementation
|
|
{
|
|
struct VerifyStringResult : VerifyStringResultT<VerifyStringResult>
|
|
{
|
|
VerifyStringResult() = default;
|
|
|
|
winrt::Microsoft::Xbox::Services::System::VerifyStringResultCode ResultCode();
|
|
hstring FirstOffendingSubstring();
|
|
};
|
|
}
|