Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

PACKAGE_VERSION structure

Represents the package version information.

Syntax


typedef struct PACKAGE_VERSION {
  union {
    UINT64 Version;
    struct {
      USHORT Revision;
      USHORT Build;
      USHORT Minor;
      USHORT Major;
    };
  };
} PACKAGE_VERSION;

Members

Version

Type: UINT64

The full version number of the package represented as a single integral value.

Revision

Type: USHORT

The revision version number of the package.

Build

Type: USHORT

The build version number of the package.

Minor

Type: USHORT

The minor version number of the package.

Major

Type: USHORT

The major version number of the package.

Requirements

Minimum supported client

Windows 8 [desktop apps only]

Minimum supported server

Windows Server 2012 [desktop apps only]

Header

AppModel.h

See also

PACKAGE_ID

 

 

Show:
© 2017 Microsoft