XStoreQueryAddOnLicensesAsync
枚举附加到数字游戏许可证的任何 Durable 加载项的许可证。 这仅适用于不带包类型的 Durable,只能与数字许可证一起使用,不能和光盘一起使用。 使用光盘许可证运行此功能将导致空结果,即使存在用户拥有或受许可使用的单独耐用品。 对于光盘方案,请改用 XStoreAcquireLicenseForDurablesAsync。
语法
HRESULT XStoreQueryAddOnLicensesAsync(
const XStoreContextHandle storeContextHandle,
XAsyncBlock* async
)
参数
storeContextHandle _In_
类型:XStoreContextHandle
XStoreCreateContext 返回的用户的应用商店上下文句柄。
async _Inout_
类型:XAsyncBlock*
用于定义正在进行的异步工作的 XAsyncBlock。 XAsyncBlock 可用于轮询调用的状态和检索调用结果。 有关详细信息,请参阅 XAsyncBlock。
返回值
类型:HRESULT
HRESULT 成功或错误代码。
备注
要检索加载项许可证以及此函数的执行结果,请在调用此函数后调用 XStoreQueryAddonLicensesResult。 要检索此函数获取的许可证数,请在调用此函数后调用 XStoreQueryAddonLicensesResultCount。 结果计数函数很重要,因为它让您可以确定要传递给结果函数的数组的适当大小。
以下代码片段演示了检索用户拥有或受许可使用的 Durable 加载项许可证(不带程序包)的示例:
void CALLBACK QueryAddOnLicensesCallback(XAsyncBlock* asyncBlock)
{
uint32_t count;
HRESULT hr = XStoreQueryAddOnLicensesResultCount(
asyncBlock,
&count);
if (FAILED(hr))
{
printf("Failed retrieve the add-on license count: 0x%x\r\n", hr);
return;
}
printf("Number of add-on licenses: %d", count);
XStoreAddonLicense* addOnLicenses = new XStoreAddonLicense[count];
hr = XStoreQueryAddOnLicensesResult(asyncBlock, count, &addOnLicenses);
if (FAILED(hr))
{
printf("Failed retrieve the add-on licenses: 0x%x\r\n", hr);
delete[] addOnLicenses;
return;
}
for (uint32_t index = 0; index < count; index++)
{
printf("expirationDate : %d\r\n", addOnLicenses[index].expirationDate);
printf("inAppOfferToken: %s\r\n", addOnLicenses[index].inAppOfferToken);
printf("isActive : %s\r\n", addOnLicenses[index].isActive ? "true" : "false");
printf("skuStoreId : %s\r\n", addOnLicenses[index].skuStoreId);
}
delete[] addOnLicenses;
}
void QueryAddOnLicenses(XStoreContextHandle storeContextHandle, XTaskQueueHandle taskQueueHandle)
{
auto asyncBlock = std::make_unique<XAsyncBlock>();
ZeroMemory(asyncBlock.get(), sizeof(*asyncBlock));
asyncBlock->queue = taskQueueHandle;
asyncBlock->callback = QueryAddOnLicensesCallback;
HRESULT hr = XStoreQueryAddOnLicensesAsync(
storeContextHandle,
asyncBlock.get());
if (FAILED(hr))
{
printf("Failed to get add-on licenses: 0x%x\r\n", hr);
return;
}
}
要求
头文件:XStore.h(包含在 XGameRuntime.h 中)
库:xgameruntime.lib
支持平台:Windows、Xbox One 系列主机和 Xbox Series 主机
另请参阅
XStore
XStoreQueryAddonLicensesResult
XStoreQueryAddonLicensesResultCount