XPackageFeature

描述功能。

语法

typedef struct XPackageFeature {  
    const char* id;  
    const char* displayName;  
    const char* tags;  
    bool hidden;  
    uint32_t storeIdCount;
    const char** storeIds;
} XPackageFeature  

成员

id
类型:const char*

功能 ID。

displayName
类型:const char*

将向用户显示的显示名称。

tags
类型:const char*

包的功能标记。

hidden
类型:bool

确定包的功能是否已隐藏。

storeIdCount
类型:uint32_t

数组中的 Xbox 用户 ID 的数量。

storeIds
类型:const char**

通过工作程序与此功能关联的存储 ID 数组。 如果没有关联的存储 ID,此字段将为 null。

备注

XPackageFeature 结构描述包的功能。 XPackageFeature 定义功能 ID、显示名称和功能标记。 它还将确定包的功能是否已隐藏。 功能 ID 可能通过工作程序与零个或多个存储 ID 相关。 相关的存储 ID 在 XPackageFeature 中可用。

有关将打包技术用于 Xbox One 游戏的信息,请参阅打包概述

要求

头文件:XPackage.h

支持平台:Windows、Xbox One 系列主机和 Xbox Series 主机

另请参阅

XPackageEnumerateFeatures
XPackage